Guest User

Untitled

a guest
Jun 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. let name = "Mike"
  2. //中身が変わるものは変数で宣言
  3. var age = 19
  4. var isStudent = true
  5. //----4年後、大学を卒業して社会人に----
  6. age = 23
  7. isStudent = false
  8. print(name)
  9. print(isStudent)
  10. // -> 23
  11. // -> false
  12. // name = "Ken"には変更できないので注意!
Add Comment
Please, Sign In to add comment