Help for this page

Select Code to Download


  1. or download this
    sub process ($\%\%) {
      my($path, $seen, $total) = @_;
    
      # do something...
    }
    
  2. or download this
    my %seen;
    my %total;
    
    foreach my $path (@ARGV) {
      process($path, %seen, %total);
    }