Skip to content

Instantly share code, notes, and snippets.

@konrad1977
Last active August 29, 2015 14:22
Show Gist options
  • Save konrad1977/a5dff3970154c5e20e60 to your computer and use it in GitHub Desktop.
Save konrad1977/a5dff3970154c5e20e60 to your computer and use it in GitHub Desktop.
var daysInMonth: Int = 30
var currentYear: 2000
let months: 12
enum Sex {
case Male
case Female
case Unknown
}
class Person {
let firstName: String
let lastName: String
var sex: Sex?
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