9 lines
124 B
Kotlin
Vendored
9 lines
124 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
var s = ""
|
|
for (c in StringBuilder("OK")) {
|
|
s += c
|
|
}
|
|
return s
|
|
} |