Does ' have an effect in special forms in Lisp?

128 Views Asked by At

Will ' affect the evaluation of special forms? Example: (function 'function-name). If this doesn't work, why?

1

There are 1 best solutions below

2
On BEST ANSWER

'name is read to (quote name).

FUNCTION expects a name for a function, a list (setf some-name) or a lambda expression.

(quote name) is neither. So it is an error to use it.