You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
368 B
Perl

#!/usr/bin/perl
use warnings;
use strict;
my %outer = (A=> {a1=>1, a2=>2, a3=>3},
B=> {b1=>4, b2=>5, b3=>6},
C=> {c1=>7,c2=>8, c3=>9});
foreach my $outer_key (keys %outer) {
print "$outer_key => \n";
foreach (keys %{$outer{$outer_key}} ) {
print"\t$_ => $outer{$outer_key}{$_} \n";
}
print "\n";
}