http://qs321.pair.com?node_id=11111356


in reply to Possible precedence issue with control flow operator

I must admit that I'm a little surprised myself, but it turns out that or's precedence is so low that it is actually lower than return (probably because return is treated as a list operator). Which leads to the following result:

perl -MO=Deparse -e "sub test { return int(rand(2)) or print 'Nope' }" sub test { print 'Nope' unless return int rand 2; } -e syntax OK
I'm pretty sure this is not what you meant, because this would somehow try to do something in the sub after returning from it. I'm also not exactly sure what the return value of return itself would be :P.

Two ways to do what you want (beyond the one you already proposed), either with a temp variable:

my $result; $result = something() or croak "Something went wrong"; return $result;
Or, if this is the last line of your sub, you could remove the return altogether (if that's compatible with your coding rules):
sub mySub { ... something() or croak "Times are a'croaking"; }
The right way is the one that you like the most (again, respecting whatever coding rules should apply).