Help for this page

Select Code to Download


  1. or download this
    my %hash = (
       ( map { $_=>'toto' } qw( a b c f t u ) ),
       ( map { $_=>'titi' } qw( b g k p ) ),
    );
    
  2. or download this
    $hash{$_} = 'toto' for qw( a b c f t u );
    $hash{$_} = 'titi' for qw( b g k p );