Skip to content

Instantly share code, notes, and snippets.

@barik
Created December 27, 2012 22:35
Show Gist options
  • Save barik/4392729 to your computer and use it in GitHub Desktop.
Save barik/4392729 to your computer and use it in GitHub Desktop.
Land of Lisp #' confusion.
(let ((car "Honda Civic"))
(mapcar #'car '((foo bar) (baz qux))))
(let ((car "Honda Civic"))
(mapcar 'car '((foo bar) (baz qux))))
(let ((car "Honda Civic"))
(mapcar car '((foo bar) (baz qux))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment