Files
kotlin/compiler/testData/codegen/bottles2.jet
2011-10-20 16:21:18 +02:00

8 lines
150 B
Plaintext

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