\ Impacto version of 99 Bottles of beer (Bottles.imp) \ Philipp Winterberg, http://www.winterbergs.de \ See http://scorpius.spaceports.com/~esanto/ for(b = 1, 99, 1) { print(100-b " bottle(s) of beer on the wall,\n") print(100-b " bottle(s) of beer.\n") print("Take one down, pass it around,\n") print(99-b " bottle(s) of beer on the wall.\n\n") } end()