Skip to content

Instantly share code, notes, and snippets.

@martinlindhe
Last active November 19, 2015 12:10
Show Gist options
  • Save martinlindhe/5c260256e84788c2b0e3 to your computer and use it in GitHub Desktop.
Save martinlindhe/5c260256e84788c2b0e3 to your computer and use it in GitHub Desktop.
99 bottles
# 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);
<?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