Kotlin Singleton

object MySingleton {
    fun myMethod(): Int {
        return 5
    }
}

MySingleton.myMethod() // 5
Promofo