<@U10EJRH2L> `val` is not what C++' `const` is
# language-proposals
c
@Ruckus
val
is not what C++'
const
is
r
I understand that, but for Kotlin immutability, you use
val
. Kotlin isn't a struct language.
c
val
gives you reference immutability,
const
gives you value immutability (which is too strict and not that useful in my experience)