Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
public class Animal {
2
private String sound;
3
4
public void roar() {
5
System.out.println(sound);
6
}
7
}
8
9