Created
November 19, 2015 23:26
-
-
Save ityonemo/3a104d6150d87fb4f02b 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
| using Base.Test | |
| module X | |
| macro id(v) | |
| quote | |
| $v | |
| end | |
| end | |
| export @id | |
| end | |
| @test 1==1 #ok | |
| using X | |
| @id 1+1 #2 | |
| @id @test 1==1 #ERROR: UndefVarError: @test not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment