Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created February 19, 2018 10:26
Show Gist options
  • Save vialyx/c68889bd8805d7b446aa4b2a0b8c7c5b to your computer and use it in GitHub Desktop.
Save vialyx/c68889bd8805d7b446aa4b2a0b8c7c5b to your computer and use it in GitHub Desktop.
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