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

3 lines
68 B
Common Lisp

(let ((x 11) (y 22))
(format t "~%x + y = ~a" (eval `(+ ,x ,y))))