Help for this page

Select Code to Download


  1. or download this
    $b ++ if ( $_ eq "b" ) foreach @a ;
    
  2. or download this
    ( $_ eq "b" ) and $b ++ foreach @a ;
    
  3. or download this
    foreach(@a) {
        $b ++ if ( $_ eq "b" );
    }
    
  4. or download this
    statement if condition;