Help for this page

Select Code to Download


  1. or download this
    my @twice= map $doubler->($_), @list;
    my @thrice= map $tripler->($_), @list;
    
  2. or download this
    my @twice= map 2*$_, @list;
    my @thrice= map 3*$_, @list;