Hi all
I need the following:
quote
:symbol
end
is there a better way for doing this:
julia> symbol = :symbol
:symbol
julia> quote
Symbol(String($symbol))
end
quote
Symbol(String($symbol))
end
So what I need is basically a symbol in a quote but the value of the symbol comes from outside
Thanks