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
String sound = "Maunz";
6
}
7
8
@Override
9
public void roar() {
10
System.out.println("Cat:" + sound);
11
}
12
}
13
14