-
-
Save ursm/6123600 to your computer and use it in GitHub Desktop.
This file contains 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
history = [] | |
puts 'Hello! May I help you?' | |
while words = gets.chomp | |
history << words | |
break if history.last(3) == %w(BYE BYE BYE) | |
case words | |
when 'BYE' | |
# do nothing | |
when words.upcase | |
puts "Well, it hasn't happened since #{rand(1930..1950)}!" | |
else | |
puts 'Huh? Could you speak up, please??' | |
end | |
end | |
puts 'Thanks. Come back anytime.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment