Help for this page

Select Code to Download


  1. or download this
    $hash{'somestring'}[0] = 13;
    $hash{'somestring'}[1] = 24;
    
  2. or download this
    foreach my $k(keys %hash) {
        print "Key: $k\n";
    ...
            print " - ".$hash{$k}[$i]."\n";
        }
    }