Skip to content

Instantly share code, notes, and snippets.

@ananevam
Created March 27, 2020 10:52
Show Gist options
  • Save ananevam/b671203c15d176c6db1b21a35e676faa to your computer and use it in GitHub Desktop.
Save ananevam/b671203c15d176c6db1b21a35e676faa to your computer and use it in GitHub Desktop.
class Foo {
Foo(){
print("FOO");
}
}
class Bar extends Foo {
Bar(){
print("BAR");
}
}
main() {
Bar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment