Skip to content

Instantly share code, notes, and snippets.

@allolex
Created October 9, 2015 20:33
Show Gist options
  • Save allolex/923130c7bbc041b024a3 to your computer and use it in GitHub Desktop.
Save allolex/923130c7bbc041b024a3 to your computer and use it in GitHub Desktop.
expression = true
while (expression) do
80.times { puts }
puts "hello"
puts "enter your age:"
answer = gets.chomp
if answer.to_i > 20
# You're 21 or over
puts "You've made it into my booze-oriented site"
else
# You're not allowed to drink here
puts "Get outta here, kid!"
break
end
end
# puts "What do you want to do?"
# puts <<EOP
# (w)alk toward the monster
# (r)un away
# (c)heck inventory
# EOP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment