Help for this page

Select Code to Download


  1. or download this
    @returned_files = match_files(\@array, \%hash);
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    
    my $returned_array = ret_array();
    print @$returned_array;
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    
    my @returned_array = ret_array();
    print @returned_array;