2 lines
68 B
Common Lisp
2 lines
68 B
Common Lisp
(let ((x 11) (y 22))
|
|
(format t "~%x + y = ~a" (eval `(+ ,x ,y))))
|
(let ((x 11) (y 22))
|
|
(format t "~%x + y = ~a" (eval `(+ ,x ,y))))
|