Last active
March 27, 2019 06:47
-
-
Save nhathm/210c9112b61a88d623d064193dd3d84b 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 = 18 | |
let ageDescription = #"My age = \#(age)"# // Swift 4.2: \(age) => Swift 5: \#(age) | |
// output: My age = 18 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment