|
|
|
|
|
by ssp
5719 days ago
|
|
For non-hygienic macros, it's essentially the variable capture problem. For hygienic macros, I don't know of a good argument that they are inherently more difficult to understand separately from their invocation than a function. (I'm not personally arguing against macros - or global variables for that matter - just trying to state the argument). |
|
Full macros (like in CL where they are just functions that don't evaluate their arguments) give the programmer same power as compiler writer or programming language designer.
ps. To really get benefit from Lisp macros, you would need to standardize code walker. Without code walker, macros can't reach their full potential.