Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created August 10, 2020 12:13
Show Gist options
  • Select an option

  • Save foxicode/28da09e1c6bd4760281622111ece4fa3 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/28da09e1c6bd4760281622111ece4fa3 to your computer and use it in GitHub Desktop.
Converting Int to String
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