Files
kotlin/compiler/testData/codegen/bottles.kt
2013-01-24 21:12:27 +04:00

8 lines
147 B
Kotlin

fun main() {
var bottles = 99;
while(bottles > 0) {
System.out?.println("bottles of beer on the wall");
bottles--;
}
}