8 lines
192 B
Kotlin
Vendored
8 lines
192 B
Kotlin
Vendored
// DONT_TARGET_EXACT_BACKEND: WASM
|
|
// WASM_MUTE_REASON: STDLIB_STRING_BUILDER
|
|
// KJS_WITH_FULL_RUNTIME
|
|
fun box(): String {
|
|
val sb = StringBuilder("OK")
|
|
return "${sb.get(0)}${sb[1]}"
|
|
}
|