Kotlin's `val` means `immutable` or `readonly`?:th...
# announcements
i
Kotlin's
val
means
immutable
or `readonly`?🤔
s
readonly
! e.g. no one is stopping you from writing a getter that always returns a different value:
Copy code
val text: String get() = LocalDateTime.now().toString()