Skip to content

Instantly share code, notes, and snippets.

@proclnas
Created July 8, 2018 05:02
Show Gist options
  • Save proclnas/ba74cab022ebb6a6b7f310676119457a to your computer and use it in GitHub Desktop.
Save proclnas/ba74cab022ebb6a6b7f310676119457a to your computer and use it in GitHub Desktop.
(ns http)
(defn http-get [url]
(def client (java.net.URL. url))
(def response (slurp (.openStream client)))
(println response))
(http-get "http://proclnas.github.io")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment