Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Last active December 16, 2015 18:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jeffkreeftmeijer/5478520 to your computer and use it in GitHub Desktop.
Save jeffkreeftmeijer/5478520 to your computer and use it in GitHub Desktop.
def process(input)
if input == 'q'
puts 'Goodbye'
elsif input == 'tweet'
puts 'tweeting'
elsif input == 'dm'
puts 'direct messaging'
elsif input == 'help'
puts 'helping'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment