For a program I'm writting I'm making a complex data structure, a hash of hashes. I'm constructing a hash along the way, then trying to insert that hash into the larger hash. Problem is I'm not sure precicely how to do it.
$external_hash{'key'} = %internal_hash; gives a fraction, which I've discerned to be a reference based off of the errors. \%internal_hash obviously gives a reference and in the more normal format. So what's the trick? ~wren