Skip to content

Instantly share code, notes, and snippets.

@gerdr
Created May 6, 2012 15:36
Show Gist options
  • Select an option

  • Save gerdr/2622973 to your computer and use it in GitHub Desktop.

Select an option

Save gerdr/2622973 to your computer and use it in GitHub Desktop.
99 Bottles of Beer, lyrics from 99-bottles-of-beer.net
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