Help for this page

Select Code to Download


  1. or download this
    $hash1{$_} = $hash2{$_} for keys %hash2;
    
  2. or download this
    @hash1{keys %hash2} = values %hash2;
    
  3. or download this
    $combined{$k} = $v while my ($k, $v) = each %hash2;