Created
November 25, 2010 06:42
-
-
Save MelanieS/715008 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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