Closed
Description
MWE:
julia> macro foo()
quote
x = 1
:($x)
end
end
@foo (macro with 1 method)
julia> @macroexpand @foo
quote
#= REPL[40]:3 =#
var"#58#x" = 1
#= REPL[40]:4 =#
x
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment