http://qs321.pair.com?node_id=212378


in reply to Adding additional values to a hash of an hash ?

If $hash{'one'} is a hashref, here is one way to do it:
my $hashref = $hash{'one'}; $hashref->{'key1'} = 'value1'; $hashref->{'key2'} = 'value2'; print $_,"=",$hashref->{$_},"\n" foreach keys %$hashref;

--
hiseldl
What time is it? It's Camel Time!