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

3 lines
68 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(let ((x 11) (y 22))
(format t "~%x + y = ~a" (eval `(+ ,x ,y))))