Skip to content

Instantly share code, notes, and snippets.

@ityonemo
Created November 19, 2015 23:26
Show Gist options
  • Select an option

  • Save ityonemo/3a104d6150d87fb4f02b to your computer and use it in GitHub Desktop.

Select an option

Save ityonemo/3a104d6150d87fb4f02b to your computer and use it in GitHub Desktop.
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