Created
May 6, 2012 15:36
-
-
Save gerdr/2622973 to your computer and use it in GitHub Desktop.
99 Bottles of Beer, lyrics from 99-bottles-of-beer.net
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use v6; | |
| my @bottles = ((99...2) X~ ' bottles'), | |
| '1 bottle', | |
| 'no more bottles', | |
| '99 bottles'; | |
| my @actions = 'Take one down and pass it around' xx 99, | |
| 'Go to the store and buy some more'; | |
| for @bottles Z @actions Z @bottles[1..*] { | |
| say "$^a of beer on the wall, $^a of beer. | |
| $^b, $^c of beer on the wall.\n".ucfirst; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment