Skip to content

Instantly share code, notes, and snippets.

(defun area ()
(let (x y)
(format t "Enter the x variable~%")
(setf x (read))
(format t "Enter the y variable~%")
(setf y (read))
(format t "The answer is~%")
(values (* y x))))
(defun area ()
(let (x y)
(format t "Enter the x variable~%")
(setf x (read))
(format t "Enter the y variable~%")
(setf y (read))
(values (* y x))))