in reply to Hash of Hash
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;
|
|---|