Help for this page

Select Code to Download


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