13 lines
220 B
Kotlin
Vendored
13 lines
220 B
Kotlin
Vendored
|
|
fun box(): String {
|
|
OUTER@while (true) {
|
|
var x = ""
|
|
try {
|
|
do {
|
|
x = x + break@OUTER
|
|
} while (true)
|
|
} finally {
|
|
return "OK"
|
|
}
|
|
}
|
|
} |