Help for this page

Select Code to Download


  1. or download this
    sub score_count {
        my @arr = shift;
    ...
        return $total;
    }
    
  2. or download this
        foreach my $score (@arr) {
          foreach my $i (@$score) {
              $total += $i;
          }
        }
    
  3. or download this
    sub score_count {
        my $arr = shift;
    ...
    }