Created
August 10, 2020 12:13
-
-
Save foxicode/28da09e1c6bd4760281622111ece4fa3 to your computer and use it in GitHub Desktop.
Converting Int to String
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| extension Int { | |
| func toString() -> String { | |
| "\(self)" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment