Skip to content

Instantly share code, notes, and snippets.

@jhirn
Created May 9, 2013 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhirn/5550285 to your computer and use it in GitHub Desktop.
Save jhirn/5550285 to your computer and use it in GitHub Desktop.
(def input-map { "q" "quit"
"tweet" "tweeting"
"dm" "direct messaging"
"help" "helping" })
(defn process_input [input]
(when-let [value (input-map input)]
print value))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment