mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
10 lines
126 B
Kotlin
Vendored
10 lines
126 B
Kotlin
Vendored
fun box(): String {
|
|
while (false);
|
|
|
|
var x = 0
|
|
while (x++<5);
|
|
if (x != 6) return "Fail: $x"
|
|
|
|
return "OK"
|
|
}
|