7 lines
102 B
Kotlin
Vendored
7 lines
102 B
Kotlin
Vendored
// LAMBDAS: INDY
|
|
|
|
fun appendTo(s: String) =
|
|
fun Any?.() = s + this
|
|
|
|
fun box() = appendTo("O")("K")
|