Created
October 9, 2015 20:33
-
-
Save allolex/923130c7bbc041b024a3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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