in reply to Referencing a HoH

That is to be expected. Your top hash contains references to hashes; you need to dereference them first. To do so you need a nested loop:
foreach my $key (keys %hshFoo) { foreach my $subkey (keys %{$hshFoo{$key}}) { print "$key/$subkey => $hshFoo{$key}{$subkey}\n"; } }
See perlref, perllol and perlreftut.

Makeshifts last the longest.

Replies are listed 'Best First'.
Re: Re: Referencing a HoH
by P0w3rK!d (Pilgrim) on May 07, 2003 at 17:50 UTC
    I had the right idea. I botched this when I did it. Thank you :)