Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
public 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