Skip to content

Instantly share code, notes, and snippets.

@vialyx
Last active October 8, 2018 15:34
Show Gist options
  • Save vialyx/b80d0232827cf572687bf08526d78a09 to your computer and use it in GitHub Desktop.
Save vialyx/b80d0232827cf572687bf08526d78a09 to your computer and use it in GitHub Desktop.
struct NameComponents {
var firstName: String
var lastName: String
mutating func change(firstName: String, lastName: String) {
self.firstName = firstName
self.lastName = lastName
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment