To be more specific, the difference between `val` ...
# getting-started
e
To be more specific, the difference between
val
and
const val
would really show up in scenarios of separate compilation of multiple modules and when you start using annotations (you can only use
const val
with them)
👌 2