<' // 99 Bottles of beer // By Frank Oberhoff extend sys { run() is also { for i from 99 down to 1 do { outf ("%0d bottles of beer on the wall,\n", i); outf ("%0d bottles of beer,\n", i); out ("Take one down and pass it around,"); if i == 1 { out ("No more bottles of beer on the wall."); outf ("\n"); } else { outf ("%0d bottles of beer on the wall.\n", i-1); outf ("\n"); }; }; out ("Go to the store and buy some more"); }; }; '>