/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.
Name:
Anonymous2015-06-01 10:50
>>19 A macro is a function from s-exp to s-exp that is run during compilation. The only difference is that mutually recursive functions crash at runtime, while macros crash at macroexpansion time.