Help for this page

Select Code to Download


  1. or download this
    use strict;
    use strict;
    ...
    }
    
    pp \%oldvalue;      # { bar => 2, baz => 3, foo => "A" }
    
  2. or download this
    use strict;
    use warnings;
    ...
    
    %oldvalue = (%oldvalue, %newvalue);
    pp \%oldvalue;      # { bar => 2, baz => 3, foo => "A" }