Fred Gilham <[EMAIL PROTECTED]> wrote
> > And Lisp's "macro language" isn't involved at all here.
> Also, #' is a read-macro.
A read-macro and a macro aren't the same thing.
> Then there's the "defun" macro . . . .
There is IMHO a difference between using a macro and using the "macro language
"Kay Schluehr" <[EMAIL PROTECTED]> wrote
> Maybe You can answer my question what this simple LISP function does ?
It obviously returns a function adding n to the function's parameter,
n being bound into the functions's closure during the call to ADDN.
It's simple and straightforward.
> This is