in reply to How to correctly use a symbolic reference to automatically generate hash names?

It is almost always a bad idea to use phony-names in this way, especially when Perl's "auto-vivification" feature (Google it ...) makes it so darn easy to build "hashes of arrays of arrays of hashes of ..." Surely you want something like:

$myhash->{'wow'}->[3]->{'bygolly'}
  • Comment on Re: How to correctly use a symbolic reference to automatically generate hash names?