RosettaCodeData/Task/Runtime-evaluation/Common-Lisp/runtime-evaluation-6.lisp
2023-07-01 13:44:08 -04:00

2 lines
68 B
Common Lisp

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