Help for this page

Select Code to Download


  1. or download this
    my %hash;
    $hash{some_key}  = [ $this, $that ]; # [ ... ] creates an anonymous ar
    +ray ref.
    ...
    foreach my $key ( keys %hash ) {
      print "key: $key, values: $hash{$key}[0], $hash{$key}[1]\n";
    }