📚 The CoCalc Library - books, templates and other resources
1public class Jungle { 2 public static void main(String[] args) { 3 Animal felix = new Cat(); 4 System.out.println(felix.getCatSound()); 5 System.out.println(felix.getSound()); 6 } 7} 8 9