Help for this page

Select Code to Download


  1. or download this
    if (grep {$_ eq "foo"} @somearray) {
       someaction();
    }
    
  2. or download this
    someaction() if grep {$_ eq "foo"} @somearray;