Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
public class Cat extends Animal {
2
public String sound;
3
4
public Cat() {
5
sound = "Maunz";
6
}
7
8
public String getCatSound() {
9
return sound;
10
}
11
}
12
13