RosettaCodeData/Task/Runtime-evaluation-In-an-environment/EchoLisp/runtime-evaluation-in-an-environment.l
2023-07-01 13:44:08 -04:00

12 lines
325 B
Common Lisp
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(define (eval-with-x prog x)
(eval prog (environment-new (list (list 'x x)))))
(define prog '( + 1 (* x x)))
(eval-with-x prog 10) 101
(eval-with-x prog 1000) 1000001
(- (eval-with-x prog 1000) (eval-with-x prog 10)) 999900
;; check x is unbound (no global)
x
😖 error: #|user| : unbound variable : x