in reply to (Guildenstern) RE: Can't access hash of hashes.
in thread Can't access hash of hashes.

$a=\@b;
So $a is now a reference to a list. How do you access that list? @$a But of course, this kind of dereferencing can get confusing, easily typoed, etc. so you say: @{$a} It's all in perlref