Files
kotlin-fork/idea/testData/codegen/bottles.jet
T
2011-04-14 17:02:32 +02:00

8 lines
147 B
Plaintext

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