Name:
Anonymous
2011-09-05 13:07
I constantly hear LISPers boast of the macro capabilities of LISP. How are they different from, say, the macros one can make in C?
Name:
Anonymous
2011-09-05 15:33
>>5
Compiled lisps tend to have god awful interpretter implementations. see:
http://picolisp.com/5000/!wiki?NeedForSpeed
optimization via going native is superior to compiler hints anyway.
compiling Lisp is backward. Lisp is clearly meant to be fully interpreted. first-class macros/fexprs are the way of kings.