mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 22:38:04 +02:00
8 lines
No EOL
168 B
Scala
8 lines
No EOL
168 B
Scala
class Person (
|
|
val firstName: String,
|
|
var lastName: String,
|
|
age: Int) {
|
|
println("This is the constructur.")
|
|
|
|
def sayHi() = println("Hello world!")
|
|
} |