Hyperoperators
Perl 5:
# pairwise add elements of @a and @b to produce @c for ($i = 0; $i < @a; $i++) { $c[$i] = $a[$i] + $b[$i]; }continued...
Perl 6 | Parallelism in Perl 6 | #14 |
Perl 5:
# pairwise add elements of @a and @b to produce @c for ($i = 0; $i < @a; $i++) { $c[$i] = $a[$i] + $b[$i]; }continued...
Copyright © 2013 http://www.pmichaud.com/2013/pres/ |