(walk/macroexpand-all '(add 1 2)) ;; Expanding the function call | |
=> (add 1 2) ;; Unchanged after compilation | |
(walk/macroexpand-all '(add-m 1 2)) ;; Expanding the macro | |
=> 3 ;; A constant after compilation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment