Help for this page

Select Code to Download


  1. or download this
    $hash{$_} = $otherhash{$_} for grep !exists $hash{$_}, keys %otherhash
    +;
    
  2. or download this
    {
      my @new_keys = grep !exists $hash{$_}, keys %otherhash;
      @hash{@new_keys} = @otherhash{@new_keys};
    }