Skip to content

Instantly share code, notes, and snippets.

@pedrogrande
Created November 3, 2015 05:28
Show Gist options
  • Save pedrogrande/2e436cc02daced958a54 to your computer and use it in GitHub Desktop.
Save pedrogrande/2e436cc02daced958a54 to your computer and use it in GitHub Desktop.
puts "You enter a room with two doors. Do you open Door 1 or 2?"
print "> "
door = gets.chomp
if door == "1"
puts "You won $5000!"
elsif door == "2"
puts "You stare into the endless abyss :("
else
puts "You failed"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment