Created
December 19, 2017 21:23
-
-
Save jmercouris/472724f1e5a11b99dfad3ac3a987538c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defparameter *some-global* ()) | |
(defun my-command () | |
(with-results ((name (read-from-minibuffer :prompt "What is your name?")) | |
(age (read-from-minibuffer :prompt "What is your age?"))) | |
(print name) | |
(print age) | |
(setf *some-global* name)) | |
(print *some-global*)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment