Help for this page
my %HOA = ( this => [ 'A', 'B', 'C' ], that => [ 'D', 'E', 'F' ], other => [ 'G', 'H', 'I' ], );
print $hoa{this}[2], "\n"; # prints 'C'.
foreach my $key ( keys %HOA ) { print "$key:\t"; ... # that: D E F # other: G H I