Skip to content

Instantly share code, notes, and snippets.

@yuanw
Created June 11, 2014 05:04
Show Gist options
  • Select an option

  • Save yuanw/c7534568bc527cb14a5a to your computer and use it in GitHub Desktop.

Select an option

Save yuanw/c7534568bc527cb14a5a to your computer and use it in GitHub Desktop.
Simple String format
let apples = 3
let oranges = 5
let appleSummary = "I have \(apples) apples."
let fruitSummary = "I have \(apples + oranges) pieces of fruit ."
let name = "Tommy"
let helloworld = "Nice to see you \(name) at \(3.0 + 4.5) years later."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment