 |
perlop - perldoc.perl.org
# These do the print before evaluating exit: (print $foo), exit; # This is what you want. print ($foo), exit; # Or this. print ($foo), exit; # Or ... (except that the ternary-operator form can be used as a lvalue, while EXPR1 // EXPR2 cannot). This is ver
perldoc.perl.org |
 |