Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
class Person (
2
val firstName: String,
3
var lastName: String,
4
age: Int) {
5
println("This is the constructur.")
6
7
def sayHi() = println("Hello world!")
8
}
9