In clisp, what is the difference?
(eval '(+ 1 2))
(eval (+ 1 2))
|
|
|
The first will pass the list The second will evaluate the expression |
|||
|
|
|
It seems (eval (+ 1 2)) will first compute (+ 1 2), then use (eval 3) (eval '(+ 1 2)) will transfer expression (+ 1 2) to eval, and let eval to interpret it. |
|||
|
|
|
All functions (except primitives and some special functions) like eval first evaluate all their argument and then pass them inside their function body. However, one can suppress evaluation of arguments by quoting them. In such a case the S-expression itself is passed as an argument instead of it being evaluated first. (eval (+ 1 2)) => First (+ 1 2) gets evaluated => (eval 3) => this gives answer 3 (eval '(+ 1 2)) => quote prevents argument from getting evaluated => (+ 1 2) gets passed as argument => however result of evaluating that S-expression is also 3. The difference can be understood better from following example: (eval (cons (+ 1 2) (+ 3 4))) => this becomes (eval (3 7)) => this gives error that "3 is not a function" as the S-expression to be evaluated is (3 7) (eval '(cons (+ 1 2) (+ 3 4))) => this becomes like typing (cons (+ 1 2) (+ 3 4)) on REPL => evaluation of this S-expression gives result (3.7) |
|||
|
|