- or download this
my @list = ( 5, 11, 7);
my @timesthree = map { $_ *= 3 } (@list);
- or download this
my @timesthree_onlyfives = map { $_ *= 3 if ($_ % 5 == 0) } (@list);
- or download this
my @all_timesthree_onlyfives =
map {
...
return $_;
}
} (@list);