Skip to content

Instantly share code, notes, and snippets.

@clauswitt
Created November 24, 2015 07:47
Show Gist options
  • Save clauswitt/384fcad924a34030ee06 to your computer and use it in GitHub Desktop.
Save clauswitt/384fcad924a34030ee06 to your computer and use it in GitHub Desktop.
(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