Help for this page

Select Code to Download


  1. or download this
    my @evens = map { $_%2 ? () : $_ } 1..10;
    
  2. or download this
    my %hash = map { /^f/ ? () 
                          : (getkey($_) => $_) }
               @array;