iseki
03/31/2020, 4:48 AMval means immutable or `readonly`?🤔Stephan Schroeder
03/31/2020, 9:55 AMreadonly! e.g. no one is stopping you from writing a getter that always returns a different value:
val text: String get() = LocalDateTime.now().toString()