I am trying to add additional values to a hash with the same key where the value is basically another hash. For example if I have $hash{'one'} = ('key1'=>'value2'); at one place and I need to add something to it..for example $hash{'one'} = ('key2' => 'value2'); so that the final result looks like this $hash{'one'} = ('key1'=>'value1','key2'=>'value2');, how would I do it ?
Thanks.