package inclusionPolymorphism.withPolymorphism; public class Cat extends Mammal { public void talk() { System.out.println("meow"); } }