Last active
January 11, 2018 06:58
-
-
Save agoiabel/a29af8c1a8ad570e39b5807a8dcc8784 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Dog { | |
let name: String | |
var age: Int | |
var breed: String | |
} | |
var dog1 = Dog(name: "Jerry", age: 2, breed: "Poodle") | |
var dog2 = dog1 | |
dog2.name = "JaneDony" | |
dog1.name //will be equal to :::"Jerry" instead of been JaneDony | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment