Help for this page

Select Code to Download


  1. or download this
    %hash = (a=>1, b=> 2, c=>3);
    foreach (keys %hash) {
        print "\$hash{$_} = $hash{$_}\n";
    }