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)
commands = {
'q' => 'Goodbye',
'tweet' => 'tweeting',
'dm' => 'direct messaging',
'help' => 'helping'
}
if command = commands[input]
puts command
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment