tkguifan has asked for the wisdom of the Perl Monks concerning the following question:
my $ref1= { ref1_specific_key => 'some value', common_key => { ref1_specific_subkey => 'some sub value', common_subkey => 'foo' } }; my $ref2= { ref2_specific_key => 'some other value', common_key => { ref2_specific_subkey => 'some other sub value', common_subkey => 'bar' } }; my $output= { ref1_specific_key => 'some value', ref2_specific_key => 'some other value', common_key => { ref1_specific_subkey => 'some sub value', ref2_specific_subkey => 'some other sub value', common_subkey => 'bar' } };
|
|---|