A hash of hashes is a simple hash, where each value is a pointer to another hash.my %hash_of_hashes= ( one => { two => 'three four five' } );
use strict; use warnings; use Data::Dumper; my %hash_of_hashes= ( one => { two => 'three four five' } ); print Dumper \%hash_of_hashes;
In reply to Re: Hash of Hash
by Skeeve
in thread Hash of Hash
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |