I noticed that simple `val` inside `object`s are t...
# announcements
e
I noticed that simple
val
inside `object`s are translated in java as
private
, while
const val
are
public
.. why?
1
g
I highly doubt about it. val inside object translated to private field and public getter
e
uh, right
thanks