Help for this page

Select Code to Download


  1. or download this
       my @result = reduce { $a += $b } @input;
    
  2. or download this
       my $counter = 0;
       my @result = reduce { $a += $b; $counter++ } @input;
    
  3. or download this
       my @result = reduce { $a + $b } @input;