Skip to content

Instantly share code, notes, and snippets.

@zc00gii
Created July 1, 2010 23:12
Show Gist options
  • Save zc00gii/460700 to your computer and use it in GitHub Desktop.
Save zc00gii/460700 to your computer and use it in GitHub Desktop.
(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))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment