Created
October 8, 2013 18:54
-
-
Save kingcons/6889672 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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