Help for this page
foreach (qw/hasha hashb hashc/) { @keys = keys eval('%' . $_); print "There are " . scalar(@keys) . " keys here for '$_'\n"; }
my %big_data = ( hasha => \%hasha, ... @keys = keys %{$big_data{$_}}; print "There are " . scalar(@keys) . " keys here for '$_'\n"; }