We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expr(:quote) is actually a quasiquote, so the following should be equivalent:
Expr(:quote)
julia> map(i->:(a[$i]), 1:4) 4-element Array{Expr,1}: :(a[1]) :(a[2]) :(a[3]) :(a[4]) julia> @_ map(:(a[$_]), 1:4) ERROR: syntax: all-underscore identifier used as rvalue Stacktrace: [1] top-level scope at REPL[2]:1
The text was updated successfully, but these errors were encountered:
Add the test case in c42f#7
bd963a2
No branches or pull requests
Expr(:quote)
is actually a quasiquote, so the following should be equivalent:The text was updated successfully, but these errors were encountered: