Name: Anonymous 2015-05-31 12:09
/prog/, do you know of a tutorial or a paper on implementing a Lisp macro system from scratch? It could be Scheme macros, it could be really simple macros, anything would be helpful.
(defmacro (mac-1)
(func-1))
(defmacro (mac-2)
(func-2))
(defun (func-1)
(mac-2))
(defun (func-2)
(mac-1))