Help for this page

Select Code to Download


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