Help for this page

Select Code to Download


  1. or download this
    $x = { foo => "abc" };
    $x .= { bar => "def", baz => "ghi" };
    
    # I want $x to be:
    # { foo => "abc", bar => "def", baz => "ghi" }
    
  2. or download this
    my $temp = { bar => "def", baz => "ghi" };
    foreach my $key (keys %$temp) {
        $x->{$key} = $temp->{$key};
    }