Guest User

Untitled

a guest
Feb 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var variable = "variable's first value"
  2. let constant = "constant's first value"
  3. print(variable)
  4. variable = "variable's second value"
  5. print(variable)
  6. constant = "constant's second value" // compile error
Add Comment
Please, Sign In to add comment