(defn add | |
"Summing two integers known at runtime" | |
[a b] | |
(+ a b)) | |
(defmacro add-m | |
"Summing two integers known at compile time" | |
[a b] | |
(add a b)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment