Skip to content

Instantly share code, notes, and snippets.

@ycros
Created October 4, 2010 14:51
Show Gist options
  • Save ycros/609812 to your computer and use it in GitHub Desktop.
Save ycros/609812 to your computer and use it in GitHub Desktop.
A: class <T> {
foo: T
init: func(=foo) {
}
}
B: class extends A<Int> {
init: func(.foo) {
super(foo)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment