in reply to Re: Regexp context with ||
in thread Regexp context with ||

I see, thanks.

In perlop I should've read

@a = @b || @c; # this is wrong @a = scalar(@b) || @c; # really meant this
instead of misinterpreting
Scalar or list context propagates down to the right operand if it is evaluated.