Skip to content

Instantly share code, notes, and snippets.

@gothick
Created August 1, 2014 20:36
Show Gist options
  • Save gothick/0e145487f224194f636a to your computer and use it in GitHub Desktop.
Save gothick/0e145487f224194f636a to your computer and use it in GitHub Desktop.
// Playground - noun: a place where people can play
class Base {
var foo: Int = 7
init() {
}
init(thisisabaseclassinit: Bool) {
}
}
class A : Base {
var isChosen = true
}
let a = A(thisisabaseclassinit: true)
println(a.isChosen) // Prints "true".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment