Mirar @ Pike developers forum wrote:
|| isn't an operator that can be used like that. You can't do for instance `||(@arr).
It can be discussed if there should be an `&& and an `|| (and an `^^) though.
The reason why it doesn't work is that the right side of the statement may not be executed, so || and && are more special then normal operators.
Ah, yes. Good point. Thanks :)