Guest User

Untitled

a guest
May 24th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. struct Dog {
  2. var name: String
  3. var weight: Int
  4. }
  5. var myDog = Dog(name: "Ranger", weight: 10)
  6. var yourDog = myDog //Deep copy
  7. yourDog.name = "Puncher"
  8. print(myDog) // Dog(name: "Ranger", weight: 10)
  9. print(yourDog) // Dog(name: "Puncher", weight: 10)
Add Comment
Please, Sign In to add comment