Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kostiakoval/1a7969fcd963bc5d5832 to your computer and use it in GitHub Desktop.
Save kostiakoval/1a7969fcd963bc5d5832 to your computer and use it in GitHub Desktop.
class Person {
let firstname: String
let lastname: String
init(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