Skip to content

Instantly share code, notes, and snippets.

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