Example Code:
(setq x 60)
(setq y 40)
(+ x y)
Execution with a Lisp interpreter
In an Interpreter based Lisp above would be Lisp data and the interpreter looks at each form and runs the evaluator. Since it is running of the Lisp data structures, it will do this…
Top comments (0)