Skip to content

Instantly share code, notes, and snippets.

@ihodes
Created July 4, 2011 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihodes/1062877 to your computer and use it in GitHub Desktop.
Save ihodes/1062877 to your computer and use it in GitHub Desktop.
partial attempt
(defun partial (f &rest args)
(lambda (&rest mrgs)
(apply 'f (append args mrgs))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment