Skip to content

Instantly share code, notes, and snippets.

@0x0dea

0x0dea/dude.rb Secret

Created July 2, 2015 17:07
Show Gist options
  • Save 0x0dea/4b261fc3352c8adb46ec to your computer and use it in GitHub Desktop.
Save 0x0dea/4b261fc3352c8adb46ec to your computer and use it in GitHub Desktop.
def handle_yes
# ...
end
def handle_no
# ...
end
while input = gets.chomp
break handle_yes if input == 'yes'
break handle_no if input == 'no'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment