Help for this page

Select Code to Download


  1. or download this
    my %hash = map $_=>1, qw(shave the modern way);
    
  2. or download this
    map +($_ => 1), ...
    
  3. or download this
    my %hash = map $_, 1, qw(shave the modern way);
    my %hash = map { $_ } 1, qw(shave the modern way);
    
  4. or download this
    map f($_) => LIST