in reply to Re: Re: Re: Storable with hash of hashes (reference problem?)
in thread Storable with hash of hashes (reference problem?)

$reports{$year} is %reports. $reports->{year} is dereferencing a hash ref contained in a scalar. The arrow is not needed for things like $array[1][2] where $array[1] is actually an array ref.