6 lines
72 B
Kotlin
Vendored
6 lines
72 B
Kotlin
Vendored
|
|
object Singleton {
|
|
fun ok() = "OK"
|
|
}
|
|
|
|
fun box() = (Singleton::ok)() |