Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. struct Tutorial {
  2. var difficulty: Int = 1
  3. }
  4. var tutorial1 = Tutorial()
  5. var tutorial2 = tutorial1
  6. tutorial2.difficulty = 2
  7. print(tutorial1.difficulty) //1
  8. print(tutorial2.difficulty) // 2
  9. class Manual {
  10. var difficult:Int = 1
  11. }
  12. var manual1 = Manual()
  13. var manual2 = manual1
  14. manual2.difficult = 2
  15. print(manual1.difficult) //2
  16. print(manual2.difficult) //2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement