Last active
November 19, 2015 12:10
-
-
Save martinlindhe/5c260256e84788c2b0e3 to your computer and use it in GitHub Desktop.
99 bottles
This file contains 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
# 208 bytes | |
$b=99;$d=" bottles of beer";$c="$d on the wall";do{echo "$b$c, $b$d.\n";if(!--$b){echo "Go to the store and buy some more";$b=99;}else echo "Take one down and pass it around";echo ", $b$c.\n\n";}while($b<99); |
This file contains 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
<?php | |
$b=99; | |
$d=" bottles of beer"; | |
$c="$d on the wall"; | |
do{ | |
echo "$b$c, $b$d.\n"; | |
if(!--$b){ | |
echo "Go to the store and buy some more";$b=99; | |
} | |
else echo "Take one down and pass it around"; | |
echo ", $b$c.\n\n"; | |
}while($b<99); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment