Help for this page

Select Code to Download


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