Created
November 24, 2015 07:47
-
-
Save clauswitt/384fcad924a34030ee06 to your computer and use it in GitHub Desktop.
This file contains 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
(setq counter 0) | |
(loop for e in *args* collect | |
(progn | |
(setq counter (+ counter 1)) | |
(write-line (concatenate 'string "argument #" (write-to-string counter) ": " e)) | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment