Guest User

Untitled

a guest
Jul 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. while true
  2. puts 'Type what you would like to say to grandma.'
  3. request = gets.chomp
  4.  
  5. if request == 'BYE BYE BYE'
  6. break
  7. else
  8. if request != 'BYE BYE' && request != 'BYE'
  9. if request.upcase == request
  10. puts 'NO, NOT SINCE' + ( 1930 + rand(21) ).to_s + '!'
  11. else
  12. puts 'HUH?! SPEAK UP, SONNY!'
  13. end
  14. end
  15. end
  16. end
Add Comment
Please, Sign In to add comment