in reply to RE: using 'my $var' vs. 'my($var)'
in thread using 'my $var' vs. 'my($var)'

my $var = shift(@_);

You can use the shorter, more idiomatic:

my $var = shift;

The @_ is implied.

Cheers,
KM