public import system, stdio private $Bottles: Byte = 99 loop write($Convert.ToStr($Bottles)+" Bottles of beer on the wall, ") writeln($Convert.ToStr($Bottles)+" bottles of beer.") write("Take one down and pass it around, ") writeln($Convert.ToStr($Bottles)+" bottles of beer on the wall.") writeln(" ") $Bottles = $Bottles - 1 if ($Bottles = 1) do (break) end write($Convert.ToStr($Bottles)+" Bottle of beer on the wall, ") writeln($Convert.ToStr($Bottles)+" bottle of beer.") write("Take one down and pass it around, ") writeln("no more bottles of beer on the wall.") writeln(" ") write("No more bottle of beer on the wall. ") writeln("No more bottles of beer...") write("Go to the store and buy some more...") writeln("99 bottles of beer.")