sub foo { my $arg = shift; # ... } vs sub bar { my ($arg) = @_; # ... } #### if ($foo == 0) { # ... } vs if (0 == $foo) { # ... }