Created
December 30, 2009 18:37
-
-
Save JonathanSmith/266274 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
If you look at test_macro.lfe | |
(defmacro let@ | |
(((vb . vbs) . b) `(let (,vb) (let@ ,vbs . ,b))) | |
((() . b) `(begin . ,b))) | |
(defsyntax let& | |
([(vb . vbs) . b] [let (vb) (let& vbs . b)]) | |
([() . b] [begin . b])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment