in reply to Re^2: Multidimensional Hash implementation/usage
in thread Multidimensional Hash implementation/usage

%CNT contains indeed another hash for each key, which in turn will contain another hash which in turn contains the "real" data.

If you want to visualize your data structures, use Data::Dumper:

use Data::Dumper; ... print Dumper \%CNT;

Replies are listed 'Best First'.
Re^4: Multidimensional Hash implementation/usage
by planetscape (Chancellor) on Sep 17, 2007 at 18:20 UTC
Re^4: Multidimensional Hash implementation/usage
by subhankar (Novice) on Sep 17, 2007 at 08:29 UTC
    Hello Moritz,

    Thank you very much. That really helped. I think I am begining to get a grip now.

    Cheers!
    Subhankar