Skip to content

Instantly share code, notes, and snippets.

@MarcoPolo
Created May 3, 2013 21:32
Show Gist options
  • Save MarcoPolo/5514387 to your computer and use it in GitHub Desktop.
Save MarcoPolo/5514387 to your computer and use it in GitHub Desktop.
(defn get-current-price
"Gets the current price from a response"
[response]
(->
(get response :body)
(parse-string)
(get-in ["return" "last" "display"])
(println)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment