Help for this page

Select Code to Download


  1. or download this
    while ( my( $key1, $val1 ) = each %hash1 ) {
        while ( my( $key2, $val2 ) = each %$val1 ) {
    ...
            );
        }
    }
    
  2. or download this
    while ( my( $key1, $val1 ) = each %hash1 ) {
        while ( my( $key2, $val2 ) = each %$val1 ) {
    ...
        }
    }