Help for this page

Select Code to Download


  1. or download this
    foreach my $i (@old_reflection) {
      chomp($i);
    ...
      # this is the same as $count = $count + 1;
      my $count++;
    }
    
  2. or download this
    ...
    my $count=0;
    ...
      $count++;
    }
    ....