Skip to content

Instantly share code, notes, and snippets.

@racbarn
Created April 18, 2011 23:39
Show Gist options
  • Save racbarn/926528 to your computer and use it in GitHub Desktop.
Save racbarn/926528 to your computer and use it in GitHub Desktop.
beer = 3
while beer > 1
# Repeat what's in here as long as it's TRUE that the counter is greater than zero
puts "#{beer} bottles of beer on the wall, #{beer} bottles of beer! Take one down and pass it around,"
beer = beer - 1
if beer > 1
puts "#{beer} bottles of beer on the wall."
else
puts "#{beer} bottle of beer on the wall."
end
end
if beer = 1
puts "#{beer} bottle of beer on the wall. #{beer} bottle of beer! Take one down down, pass it around,"
elsif beer < 1
puts 'There are no bottles of beer on the wall, no bottles of beer, you can\'t take any down or pass \'em around, there are no bottles of beer on the wall.'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment