Skip to content

Instantly share code, notes, and snippets.

@dicenull
Created March 14, 2024 08:15
Show Gist options
  • Save dicenull/c458d648ed8b47b81fb05cf441e425da to your computer and use it in GitHub Desktop.
Save dicenull/c458d648ed8b47b81fb05cf441e425da to your computer and use it in GitHub Desktop.
class Spacecraft {}
mixin Piloted {
int astronauts = 1;
void describeCrew() {
print('Number of astronauts: $astronauts');
}
}
class PilotedCraft extends Spacecraft with Piloted {}
void main() {
final voyager = PilotedCraft();
voyager.describeCrew();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment