Skip to content

Instantly share code, notes, and snippets.

@afeinberg
Created December 12, 2009 07:49
Show Gist options
  • Save afeinberg/254791 to your computer and use it in GitHub Desktop.
Save afeinberg/254791 to your computer and use it in GitHub Desktop.
(let ((animals '(("cow" . "moo")
("dog" . "arf"))))
(loop for (animal . sound) in animals do
(format t "~a says ~a~%" animal sound)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment