<@U0DJ8K3CH> I think singleton can be done like th...
# announcements
d
@dariuszbacinski I think singleton can be done like this (because it’s already part of the language)
Copy code
object PrinterDriver {
    fun print() = println("Printing with object: $this")
}
👍 1