in reply to Re: if modifier of a print statementin thread if modifier of a print statement
The first one is interpreted as: print $_ . ("\n" && next) if /no_proc/;
The . operator has higher precedence than the && operator so it is actually interpreted as:
$ perl -MO=Deparse,-p -e' print $_ . "\n" && next if /no_proc/; ' (/no_proc/ and print((($_ . "\n") && next))); -e syntax OK [download]