`lateinit var: String` is implemented as `var: Str...
# getting-started
v
lateinit var: String
is implemented as
var: String?
and inited with
null
. The trick is that the compiler believes you to initialise it before the first use and does not bother you with checks
👍 1