Files
kotlin-fork/backend.native/tests/codegen/cycles/cycle.kt
T
2016-11-08 06:35:50 +03:00

8 lines
101 B
Kotlin

fun cycle(cnt: Int): Int {
var sum = 1
while (sum == cnt) {
sum = sum + 1
}
return sum
}