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 Baby {
2
public String name;
3
public static int size;
4
5
public Baby(String name) {
6
this.name = name;
7
size = 46;
8
}
9
}
10
11