99bottles.in 280 B

12345678910
  1. /* 99 bottles */
  2. bottles = 99;
  3. while (bottles > 0) {
  4. print(bottles, " bottles of beer on the wall\n");
  5. print(bottles, " bottles of beer\n");
  6. print("Take one down, pass it around\n");
  7. bottles = bottles - 1;
  8. print(bottles, " bottles of beer on the wall\n\n");
  9. }