Help for this page
sub getSongs { my $dir = @_; # INCORRECT: assigns @_ in SCALAR context ... ... } # end of subroutine definition
my ($dir) = @_; # assign @_ in list context