Help for this page

Select Code to Download


  1. or download this
    my @hash{@keys} = @values;
    
  2. or download this
    my %hash; @hash{@keys} = @values;
    
  3. or download this
    my %hash = map { $keys[$_] => $values[$_] } 0..$#keys;
    
  4. or download this
    @$_{@keys} = @values for \my %hash;