Skip to content

Instantly share code, notes, and snippets.

@ananevam
Created March 27, 2020 10:50
Show Gist options
  • Save ananevam/2617df488edb6745b590445bad457675 to your computer and use it in GitHub Desktop.
Save ananevam/2617df488edb6745b590445bad457675 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