Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created December 6, 2014 10:44
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 AeroNotix/214dd3aef7998c317524 to your computer and use it in GitHub Desktop.
Save AeroNotix/214dd3aef7998c317524 to your computer and use it in GitHub Desktop.
(defn gen-depth [[n v]]
(let [name (symbol (str "depth-" n))]
`(def ~name ~v)))
(defmacro def-depths [depths]
`(do
~@(map gen-depth depths)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment