Help for this page

Select Code to Download


  1. or download this
      my %hash = map { $_ => "stuff_$_" } qw(asdf qwert zxcv);
    
  2. or download this
      my %hash = map { "stuff_$_" => $_ } qw(asdf qwert zxcv);
    
  3. or download this
       my %hash = map { {"stuff_$_" => $_} } qw(asdf qwert zxcv);