http://www.perlmonks.org?node_id=950761


in reply to Re: Perl Best Practices
in thread Perl Best Practices

my $x = ( 1, 2, 3 ); my ($y) = ( 1, 2, 3 ); say $x; say $y; ... gives different results for the two styles if more than one thing is passed. So I'd stick with my ($x) = ...