Help for this page
my %List; $List{"a"}{"1"} = "yes"; $List{"a"}{"2"} = "no"; $List{"b"}{"1"} = "possibly"; $List{"b"}{"2"} = "never";
print "Before:\n"; foreach my $priKey (sort keys %List) ... { print "$priKey\n"; }
Before: a ... a b c