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