Created
August 17, 2010 22:08
-
-
Save juergenhoetzel/532325 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 defunits-of [quantity base-unit & units] | |
(let [magnitude (gensym) | |
unit (gensym) | |
conversions (apply hash-map base-unit 1 units)] | |
`(defmacro ~(symbol (str "unit-of-" quantity)) | |
[~magnitude ~unit] | |
`(* ~~magnitude | |
~(relative-units ~unit ~conversions))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment