Skip to content

Instantly share code, notes, and snippets.

@showstopper
Created August 6, 2011 15:03
Show Gist options
  • Save showstopper/1129411 to your computer and use it in GitHub Desktop.
Save showstopper/1129411 to your computer and use it in GitHub Desktop.
A: class extends Exception {
init: func(=message) { init() }
init: func ~noArg { }
}
B: class extends A { init: super func}
C: class extends B { init: super func}
main: func {
C new() throw()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment