Help for this page

Select Code to Download


  1. or download this
    while( my( $key, $value ) = each %hash ) {
    ...
    
  2. or download this
    while( my $key = each %hash ) {
        ...
        my %reversed = reverse %h;
        ...
    }
    
  3. or download this
    print "$key: ", %hash;