Help for this page

Select Code to Download


  1. or download this
    my %hash = (foo => 42, bar => 84);
    
    ...
    foreach my $key (keys %hash) {
        print "$key => $hash{$key}\n";
    }