JuliaSyntax.jl
JuliaSyntax.jl copied to clipboard
Feature request: `do` with infix calls
I was disapointed today to learn that I can't write the following macro:
@forall x in y do a, b
...
end
because (x in y) do is a syntax error, one can only write in(x, y) do. Is this something reasonable to allow?
You can do
@forall(x in y) do a, b
# ...
end