julia> 1 | 2 3 julia> 1 & 2 0 julia> 1 + 2 3 julia> 1 $ 2 3 julia> |(1, 2) 3 julia> &(1, 2) ERROR: unsupported or misplaced expression & julia> +(1, 2) 3 julia> $(1, 2) ERROR: unsupported or misplaced expression $
Is & used in some way julia that makes &(1, 2) potentially ambiguous? Apologies if this is in the archives; I couldn't figure how to effectively search for '&' or 'and'. Dan
