Help for this page
map { $sum += $_ } @foo, @bar;
use strict; my $sum = 0; ... foreach (@foo,@bar) { $sum += $_; }