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 Person {
2
String prename;
3
String surname;
4
5
public Person(String prename, String surname) {
6
super();
7
this.prename = prename;
8
this.surname = surname;
9
}
10
11
@Override
12
public String toString() {
13
return prename + " " + surname;
14
}
15
}
16
17