my $thing = shift; # ...is equivalent to... my $thing = shift(@_); # ...which is, except for altering @_, functionally equivalent to... my ( $thing ) = @_; # ...or... my $thing = $_[0]; # Perl really is your friend though! # shift without parens can become ambiguous to the interpreter, # not just the next developer! in some cases like... my $lookup = $hash{shift}; # not going to shift(@_) # the unary plus forces shift to be interpreted as the function- my $lookup = $hash{+shift}; # Quick proof- perl -le '%a = (1 => 2, shift => 4); print $a{shift}' 1 4 perl -le '%a = (1 => 2, shift => 4); print $a{+shift}' 1 2 # I think in the cases in the prototype code I showed you # The "+" is not necessary. I use it habitually to visually # disambiguate shift's usage as a function. # This all means that sub o_hai { my $self = shift(@_); return $self->get_some_val(); } # ...is the same as... sub o_hai { +shift->get_some_val; }