thatadamedwards
val date = LocalDate() date.dayOfMonth = 4 // this does not compile because dayOfMonth only has a getter, and no setter
GarouDan