Samples: Fixing BottlesOfBeer.io
[io/quag.git] / samples / misc / BottlesOfBeer.io
blobbc44437cf610a40068ed2fe3be2b363be39dc52e
2 bottle := method(i,
3 if(i==0, return "no more bottles of beer")
4 if(i==1, return "1 bottle of beer")
5 return i asString .. " bottles of beer"
8 for(i, 99, 1, -1,
9 write(bottle(i), " on the wall, ", bottle(i), ",\n")
10 write("take one down, pass it around,\n")
11 write(bottle(i - 1), " on the wall.\n\n")