in reply to subroutine array empty
sub getSongs { my $dir = @_; # INCORRECT: assigns @_ in SCALAR context ... } # end of subroutine definition [download]
try
my ($dir) = @_; # assign @_ in list context [download]