Help for this page

Select Code to Download


  1. or download this
      $_ = 'Ovid';
      %hash = map { $_ => 1 } qw/ foo bar baz /;
      print;
    
  2. or download this
      $_ = 'Ovid';
      %hash = map {
    ...
          $_ => 1
      } qw/ foo bar baz /;
      print;
    
  3. or download this
      $_ = 'Ovid';
      %hash = map {
    ...
          $_ => 1
      } qw/ foo bar baz /;
      print;