Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/bottles.kt
T
2017-03-13 15:31:46 +03:00

10 lines
232 B
Kotlin

fun box(): String {
var bottles = 99
while (bottles > 0) {
// System.out.println("bottles of beer on the wall");
bottles -= 1
bottles--
}
return if (bottles == -1) "OK" else "Fail $bottles"
}