Help for this page

Select Code to Download


  1. or download this
    my $counter=0;
        foreach my $element (@result) {
        print "\nCHECKPOINT\n $result[$counter]\n";
        $counter ++;
        }
    
  2. or download this
    foreach (<myarray>) {
      my @dataset = split /blah/, $myarray[$outercounter];
    ...
      $sum = 0; $mavg = 0;
      last if $outercounter == scalar(@myarray);
      }