Help for this page

Select Code to Download


  1. or download this
    my @a=('a' .. 'z');
    print scalar grep {$_ eq "q"} @a;
    
  2. or download this
    my @foo;
    foreach (@a) {
      push @foo,$_ if ($_ eq "q");
    }
    print scalar @foo;