Guest User

Untitled

a guest
May 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. puts 'Welcom to the ol\' granny program.'
  2. puts 'Ask if your grandma has done something, but remember... she is hard of hearing.'
  3. puts ' '
  4. puts 'WHO\'S THERE?'
  5. name = gets.chomp
  6. puts 'HELLO, ' + name.upcase
  7. puts 'WHAT DID YOU WANT?'
  8. question = ' '
  9.  
  10. while question != 'BYE'
  11. question = gets.chomp
  12. if question != question.upcase
  13. puts 'SPEAK UP ' + name.upcase + '!'
  14. elsif question == 'BYE'
  15. else
  16. puts "I HAVEN\'T DONE THAT SINCE, #{(rand(60)) + 1920}"
  17. puts "WHAT ELSE?"
  18. end
  19. end
  20. puts 'BYE ' + name.upcase + '!!'
Add Comment
Please, Sign In to add comment