Arc Forumnew | comments | leaders | submitlogin
1 point by schtog 5834 days ago | link | parent

but using def and mac with these definitions:

  (defmacro mac (&rest body)
	  `(defmacro ,@body))

  (defmacro def (&rest body)
	  `(defun ,@body))

is EXACTLY the same as writing defmacro and defun?


1 point by cchooper 5833 days ago | link

yep

-----