in reply to Understanding this line of Code

$Aoh{ testa } implies that Aoh is a hash, but the name suggests it is an array of hashes. If one assumes the name reflects the actual object then something like:

$Aoh[0]{testa} = stuff

is more likely correct.


DWIM is Perl's answer to Gödel