mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
6 lines
125 B
Scala
6 lines
125 B
Scala
|
class Person (
|
||
|
val firstName: String,
|
||
|
var lastName: String,
|
||
|
age: Int) {
|
||
|
println("This is the constructur.")
|
||
|
}
|