- or download this
$dd{'1'}{'2'}{'3'}="hi";
- or download this
my %dd = (
1 => {
...
}
}
);
- or download this
my $hash_ref1 = $dd{1};
print $hash_ref->{2}{3}, "\n";
# prints h1
- or download this
while ( my ( $key, $hash_ref ) = each ( %{ $dd{1} } ) {
# $key == 2
# $hash_ref == { 2 => { 3 => 'hi' } }
}