Created
February 18, 2010 15:29
-
-
Save francoisdevlin/307738 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmacro extend-ns | |
[pred & ns-clauses] | |
(if (pred a-ns) | |
(let [clauses (apply hash-map ns-clauses)] | |
`(do | |
(import ~@(:import clauses)) | |
(use ~@(:use clauses)) | |
(require ~@(:require )))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment