Skip to content

Instantly share code, notes, and snippets.

@draftcode
Created April 18, 2011 11:47
Show Gist options
  • Save draftcode/925175 to your computer and use it in GitHub Desktop.
Save draftcode/925175 to your computer and use it in GitHub Desktop.
(define-syntax b
(syntax-rules ()
((b) 1)))
(define-syntax a
(syntax-rules ()
((a) (b))))
(define-syntax b
(syntax-rules ()
((b) 2)))
(a) ;; => 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment