Created
February 19, 2018 10:26
-
-
Save vialyx/c68889bd8805d7b446aa4b2a0b8c7c5b to your computer and use it in GitHub Desktop.
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
let age = 27 | |
print("User age is: \(age)") | |
print("User age is: " + String(age)) | |
print(String(format: "User age is: %d", age)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment