mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
11 lines
179 B
Kotlin
Vendored
11 lines
179 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// KJS_WITH_FULL_RUNTIME
|
|
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
var s = ""
|
|
for (c in StringBuilder("OK")) {
|
|
s += c
|
|
}
|
|
return s
|
|
} |