Help for this page

Select Code to Download


  1. or download this
    #global hash list example
    my %hashList = {}; 
    ...
    #inside procedure "add"
    $hashList->{$count} = %secondHash;
    
  2. or download this
    my %hashtemp = $hashList->{$count};
    while ( my ($key, $value) = each(%hashtemp) ) {
            print "\n$key => $value\n";
    }