Skip to content

Instantly share code, notes, and snippets.

@creativecreatorormaybenot
Last active July 15, 2019 08:08
Show Gist options
  • Save creativecreatorormaybenot/10e4a4fe0cc01c7eb5ec926ff9a4cebb to your computer and use it in GitHub Desktop.
Save creativecreatorormaybenot/10e4a4fe0cc01c7eb5ec926ff9a4cebb to your computer and use it in GitHub Desktop.
class Foo {
output() {
print('q');
}
}
mixin Bar {
output() {
print('w');
}
}
class Baz extends Foo with Bar {}
main() {
Baz().output();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment