Skip to content

Instantly share code, notes, and snippets.

@aanoaa
Created December 12, 2011 03:37
Show Gist options
  • Save aanoaa/1464650 to your computer and use it in GitHub Desktop.
Save aanoaa/1464650 to your computer and use it in GitHub Desktop.
use 5.010;
use List::Util 'reduce';
my @numbers = qw/1 2 3/;
my $sum1 = reduce { $a + $b } (0, @numbers);
my $sum2 = reduce { $a + $b } (10, @numbers);
say $sum1;
say $sum2;
__DATA__
6
16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment