# 99 Bottles of Beer on the Wall... # by 3pixelBob integer num_beers num_beers = 99 while num_beers > 0 echo( inttostr( num_beers ) + " bottles of beer on the wall," ) echo( inttostr( num_beers ) + " bottles of beer," ) echo( "Take one down and pass it around," ) num_beers = num_beers - 1 echo( inttostr( num_beers ) + " bottles of beer on the wall." ) end while if num_beers = 0 echo( "No more beer!", _color_red ) end if