$ perl -MO=Deparse,-p -e 'chomp $a, $b' (chomp($a), $b); -e syntax OK $ perl -MO=Deparse,-p -e 'warn $a, $b' warn($a, $b); -e syntax OK $ perl -MO=Deparse,-p -e 'reverse $a, $b' reverse($a, $b); -e syntax OK $ perl -MO=Deparse,-p -e 'print $a, $b' print($a, $b); -e syntax OK