Skip to content

Instantly share code, notes, and snippets.

@manuel
Created December 6, 2011 22:52
Show Gist options
  • Save manuel/1440425 to your computer and use it in GitHub Desktop.
Save manuel/1440425 to your computer and use it in GitHub Desktop.
noooooooooooooo
Welcome to Racket v5.1.1.
> (define-syntax bar (syntax-rules () ((_) 1)))
> (define (foo) (bar))
> (foo)
1
> (define-syntax bar (syntax-rules () ((_) 55555)))
> (foo)
1 ;; NOOOOOOOOOO!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment