Skip to content

Instantly share code, notes, and snippets.

@greenes
Last active August 29, 2015 14:17
Show Gist options
  • Save greenes/dd53707dbd2bf985f944 to your computer and use it in GitHub Desktop.
Save greenes/dd53707dbd2bf985f944 to your computer and use it in GitHub Desktop.
The Search for Obi-Wan
puts "C-3P0, human-cyborg relations"
puts "What is your name?"
name = gets.chomp.to_s
puts "It is a pleasure to meet you #{name}. Have you ever met a protocol droid before?"
user_answer = gets.chomp.to_s
puts "#{user_answer}? How interesting, for someone from around these parts."
puts "I'm terribly sorry for prying, but don't you by any chance go by the alias of Obi-Wan Kenobi, do you?"
puts "Answer 'I do' or 'I don't'"
answer = gets.chomp.to_s
if answer == "I do" || answer == "i do" || answer == "i Do"
puts "Oh, marvelous! Simply marvelous! Say hello to R2-D2; hes been looking all over for you."
else
puts "I've really enjoyed speaking with you, #{name}, but if you'll please excuse me, I have to help my friend find someone named Obi-Wan Kenobi."
puts "Please enter your favorite farewell"
fav_farewell = gets.chomp.to_s
puts "#{fav_farewell} to you too"
puts "Well R2, I suppose we'll just have to keep looking."
puts "R2-D2: (Agreeable droid noises)"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment