Help for this page
my %all_my_hashes; ... $all_my_hashes{Bet01} = { 230 => 2, 238 => 5, 224 => 1, }; $all_my_hashes{Bet05} = { 101 => 2, 103 => 2, 0 => 4, };
%$foo = ( 1, 2, ... ); ... my %all_my_hashes; $all_my_hashes{$foo} = { 1 => 2, ... };
my $all_my_hashes; $all_my_hashes->{$foo} = { 1 => 2, ... };