mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
8 lines
147 B
Kotlin
8 lines
147 B
Kotlin
fun main() {
|
|
var bottles = 99;
|
|
while(bottles > 0) {
|
|
System.out?.println("bottles of beer on the wall");
|
|
bottles--;
|
|
}
|
|
}
|