(defmacro add-inline | |
"Inlining the sum of two integers" | |
[a b] | |
`(+ ~a ~b)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(defmacro add-inline | |
"Inlining the sum of two integers" | |
[a b] | |
`(+ ~a ~b)) |