4 lines
71 B
Kotlin
Vendored
4 lines
71 B
Kotlin
Vendored
fun box(): String {
|
|
return (object { val r = "OK" } ?: null)!!.r
|
|
}
|