6 lines
77 B
Kotlin
Vendored
6 lines
77 B
Kotlin
Vendored
|
|
fun box(): String {
|
|
val f = "KOTLIN"::get
|
|
return "${f(1)}${f(0)}"
|
|
}
|