<@U7BUV3URX> an `object` by the definition of Kotl...
# announcements
a
@ayrat555 an
object
by the definition of Kotlin is a class that has a single instance (like a Singleton) and that instance is created automatically at startup, so there is no way to have abstract stuff inside an Object
a
😢
a
Aren’t Kotlin
object
instances created the first time we use them (lazy instantiation)?
a
@alex.krupa oh, you are right.
object declarations are initialized lazily, when accessed for the first time
says the kotlin reference