Skip to content

Instantly share code, notes, and snippets.

@reevik
Created February 14, 2022 16:14
Show Gist options
  • Save reevik/f3ffcfd1be08a27fa443109f423b4df1 to your computer and use it in GitHub Desktop.
Save reevik/f3ffcfd1be08a27fa443109f423b4df1 to your computer and use it in GitHub Desktop.
public class Lion extends Cat {
public Lion(AnimalSound animalSound) {
super(animalSound);
}
public void hunt() {}
// and other lion related methods.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment