Skip to content

Instantly share code, notes, and snippets.

@shivanchalaeologic
Created July 2, 2020 11:23
Show Gist options
  • Save shivanchalaeologic/9881d1e8792f193cb1d6df634e21d990 to your computer and use it in GitHub Desktop.
Save shivanchalaeologic/9881d1e8792f193cb1d6df634e21d990 to your computer and use it in GitHub Desktop.
class Alligator {
void bite() => print('Chomp');
void crawl() => print('Crawling');
void swim() => print('Swimming');
void hunt() {
print('Alligator');
crawl();
bite();
swim();
print('Eat Fish');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment