Skip to content

Instantly share code, notes, and snippets.

@devth
Created September 18, 2012 22:23
Show Gist options
  • Save devth/3746338 to your computer and use it in GitHub Desktop.
Save devth/3746338 to your computer and use it in GitHub Desktop.
Quick and dirty access to ENV
; first attempt
(let [e (into {} (System/getenv))]
(into {} (for [[k v] e] [(keyword k) v]))))))
; a little nicer
(let [e (into {} (System/getenv))]
(zipmap (map keyword (keys e)) (vals e)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment