9 lines
216 B
Kotlin
9 lines
216 B
Kotlin
fun box(): String {
|
|
fun String.f() = this
|
|
val vf: String.() -> String = { this }
|
|
|
|
val localExt = "O".f() + "K"?.f()
|
|
if (localExt != "OK") return "localExt $localExt"
|
|
|
|
return "O".vf() + "K"?.vf()
|
|
} |