Skip to content

Instantly share code, notes, and snippets.

@danielleschechter
Forked from danvideo/bottlesofbeer.rb
Created October 31, 2013 16:11
Show Gist options
  • Save danielleschechter/7252409 to your computer and use it in GitHub Desktop.
Save danielleschechter/7252409 to your computer and use it in GitHub Desktop.
class BottlesOfBeer
def count_off
puts "How many bottles of beer have you got? "
numbers = gets.chomp.to_i
numbers.downto(1) do |number|
puts "#{number} bottles of beer on the wall, #{number} bottles of beer! Take one down, pass it around, #{number-1} bottles of beer on the wall!"
end
end
bottle = BottlesOfBeer.new
bottle.count_off
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment