It's not really lazily, it's just that it won't ha...
# announcements
j
It's not really lazily, it's just that it won't happen until you call/use
Items
in your code:
Copy code
fun main() {
  val i = Items   // <-- properties created here
  println("a")
  println(i.x)
  // etc
}
1
h
Ah, I see. That makes sense
j
👍
h
Thanks!