Created
October 31, 2015 23:50
-
-
Save ronaldxs/9d5bf980ef9c3d1cd0ce to your computer and use it in GitHub Desktop.
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
my @a = ('99 bottles', 'take one down', '98 bottles'); | |
for @a { | |
say "$^a of beer on the wall, $^a of beer.$^b, $^c of beer on the wall.".tc; | |
} | |
my @b = ('99 bottles', 'take one down', '98 bottles'), ('98 bottles', 'take one down', '97 bottles'); | |
say @b.perl; | |
for @b { | |
say "$^a of beer on the wall, $^a of beer.$^b, $^c of beer on the wall.".tc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment