2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Improved scala syntax

This commit is contained in:
Martin Thoma 2014-03-05 14:36:32 +01:00
parent 408551e190
commit 0bae80d4b5
9 changed files with 61 additions and 10 deletions

View file

@ -0,0 +1,6 @@
class Person (
val firstName: String,
var lastName: String,
age: Int) {
println("This is the constructur.")
}