Help for this page

Select Code to Download


  1. or download this
    use Symbol;
    
    sub Counter ($) {
    ...
        open           $fh, ">  $_[0]" or return undef;
          # ...
    }
    
  2. or download this
    use File::CounterFile;
    
      # ...
    
    my $count = File::CounterFile->new($counter,$def_value)->inc;