Created
April 14, 2011 20:41
-
-
Save anttih/920490 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
(context | |
(lambda (test) | |
(test "hello"))) | |
;; I would like this to transform to the above | |
(group | |
(test "hello")) |
DerGuteMoritz
commented
Apr 14, 2011
(define-syntax outer
(syntax-rules ()
((_ (i1 a1 ...) (i2 a2 ...) ...)
(call-with-inner
(lambda (i1 i2 ...)
(i1 a1 ...)
(i2 a2 ...)
...)))))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment