Files

10 lines
138 B
Kotlin
Vendored

fun box(): String {
val ok: String? = "OK"
var res = ""
do {
res += ok ?: break
} while (false)
return res
}