<@U57AN0XBJ> <@U8F19U0TD> In the sense `const` is ...
# announcements
e
@ar-g @araqnid In the sense
const
is for
val
is what
inline
for
fun
— it is folded/inlined during compilation, so if you change
const val
in your library, your clients will not “see” the change until they are recompiled. And annotations are const-only, too.
3