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