Skip to content

Instantly share code, notes, and snippets.

@kingcons
Created October 8, 2013 18:54
Show Gist options
  • Save kingcons/6889672 to your computer and use it in GitHub Desktop.
Save kingcons/6889672 to your computer and use it in GitHub Desktop.
;; Stolen from Read-Eval-Print-Love by the inimitable Michael Fogus
(defmacro schemish (functions &body body)
`(macrolet ,(mapcar (lambda (function)
`(,function (&rest args)
`(funcall ,',function ,@args)))
functions)
,@body))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment