Help for this page

Select Code to Download


  1. or download this
    sub blah
    {
    ...
       return @files;
    }
    
  2. or download this
    @returned_files = match_files(\@array, \%hash);
    
  3. or download this
    match_files(\@array, \%hash);
    print "@files\n";
    
  4. or download this
    $returned_files = match_files(\@array, \%hash);
    print "$@returned_files \n";