Skip to content

Instantly share code, notes, and snippets.

@zc00gii
Created July 1, 2010 23:29
Show Gist options
  • Select an option

  • Save zc00gii/460719 to your computer and use it in GitHub Desktop.

Select an option

Save zc00gii/460719 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))
(format t "The answer is~%")
(values (* y x))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment