Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
public class Animal {
2
private String sound;
3
4
public void setSound(String sound) {
5
this.sound = sound;
6
}
7
8
public String getSound() {
9
return this.sound;
10
}
11
}
12
13