Created
June 21, 2010 06:22
-
-
Save nilium/446486 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import foo | |
Bar: class extends Foo { | |
init: super func | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import foo, bar | |
Baz: class extends Bar { | |
init: super func | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import foo, bar, baz | |
Boo: class extends Baz { | |
init: super func | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import baz | |
main: func { | |
b := Boo new(5, 10, 15) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment