RosettaCodeData/Task/Runtime-evaluation/Common-Lisp/runtime-evaluation-5.lisp

4 lines
128 B
Common Lisp
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
(let ((x 11) (y 22))
;; This is an error! Inside the eval, x and y are unbound!
(format t "~%x + y = ~a" (eval '(+ x y))))