view src/ploki/examples/beer.pk @ 12296:042127c1c142 draft

<fizzie> ` rm /hackenv/bin/bfi; ln -s /hackenv/lib/kps/bfi /hackenv/bin/bfi # no need for actual copies that you can forget to delete though
author HackEso <hackeso@esolangs.org>
date Sat, 04 Jan 2020 13:28:36 +0000
parents ac0403686959
children
line wrap: on
line source

#!../ploki
LET bottle("")  " bottles of beer"
LET bottle(1)   " bottle of beer"
LET n 99
FOR beer WUNT (n_bottle(n=1)_" on the wall,\n"_n_bottle(n=1)_",\ntake one down and pass it around,\n")
LET n n-1
WUNT (n_bottle(n=1)_" on the wall.\n\n")
IF n
    NEXT beer
FI