Help for this page

Select Code to Download


  1. or download this
        foreach my $k (keys %h){
        }
    
  2. or download this
    else {
        if( $M2 eq 'pairs' ) {
    ...
                ++$count;
            }
        }
    
  3. or download this
    if( $M1 eq 'each' ) {
        if( $M2 eq 'pairs' ) {
    ...
                ++$count;
            }
        }
    
  4. or download this
        else {
            while( my $k = each %hash ) {
                ++$count;
            }
        }
    
  5. or download this
        else {
            for my $k ( keys %hash ) {
                ++$count;
            }
        }