Skip to content

Instantly share code, notes, and snippets.

@kurohuku
Created November 16, 2010 07:45
Show Gist options
  • Save kurohuku/701564 to your computer and use it in GitHub Desktop.
Save kurohuku/701564 to your computer and use it in GitHub Desktop.
named-let
(defmacro named-let (name binds &body body)
`(labels
((,name ,(mapcar #'car binds)
,@body))
(,name ,@(mapcar #'second binds))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment