Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created October 8, 2009 10:21
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 tomjack/05542a0687e908fe2042 to your computer and use it in GitHub Desktop.
Save tomjack/05542a0687e908fe2042 to your computer and use it in GitHub Desktop.
(defmacro with-ns [ns & body]
(let [ns# *ns*]
`(do (in-ns ~ns)
~@body
(in-ns (ns-name ~ns#)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment