Created
December 6, 2011 22:52
-
-
Save manuel/1440425 to your computer and use it in GitHub Desktop.
noooooooooooooo
This file contains 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
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