Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
public class Main {
2
public static void main(String[] args) {
3
Person p = new Person("a", "b");
4
p.shout();
5
System.out.println("kein Problem");
6
}
7
}
8
9