// version 1.1.2 object Singleton { fun speak() = println("I am a singleton") } fun main(args: Array) { Singleton.speak() }