Help for this page

Select Code to Download


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