Skip to content

Instantly share code, notes, and snippets.

@MelanieS
Created November 25, 2010 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MelanieS/715008 to your computer and use it in GitHub Desktop.
Save MelanieS/715008 to your computer and use it in GitHub Desktop.
cats = ['Chip', 'Nilla']
cats.push 'Mel the Cat'
answer = ''
puts 'KITTY CAT XMAS LIST MAKER'
puts 'Did you get any new cats this year?'
answer = gets.chomp.downcase
while answer == 'yes'
puts 'You got a new kitty!?! Name it:'
kitten = gets.chomp
cats.push kitten
puts 'Did you get any other new cats this year?'
answer = gets.chomp.downcase
end
puts
puts '-----------------------CAT LIST 2010-----------------------'
puts 'Here is the list of cats that are expecting gifts this year: '
puts
puts cats
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment