Files
kotlin-fork/js/js.translator/testFiles/simple/cases/continueWhile.kt
T
2012-02-27 21:55:58 +04:00

15 lines
159 B
Kotlin

package foo
fun box() : Boolean {
var i = 0
var b = true
while (i < 100) {
++i;
if (i >= 1) {
continue;
}
b =false;
}
return b
}