Skip to content

Instantly share code, notes, and snippets.

/ruby.rb Secret

Created April 25, 2015 02:17
Show Gist options
  • Save anonymous/8d6c251fc993973c3e3b to your computer and use it in GitHub Desktop.
Save anonymous/8d6c251fc993973c3e3b to your computer and use it in GitHub Desktop.
print "How old are you?"
age = gets.chomp
if age > 13
print "You're a pre-teen!"
elsif age < 12 && age > 20
print "You're a teenager!"
else
print "You're an adult!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment