Help for this page

Select Code to Download


  1. or download this
    say Dumper({map { $_ => 'fish' } qw(one two red blue)});
    say Dumper([map { $_ => 'fish' } qw(one two red blue)]);
    
  2. or download this
    say Dumper(\@{ {map { $_ => 'fish' } qw(one two red blue)} } );
    say Dumper({map { $_ => 'fish' } qw(one two red blue)});