Help for this page

Select Code to Download


  1. or download this
    my @l = qw(foo bar baz quux);
    foreach (@l) {
    ...
    
    foo
    quux
    
  2. or download this
    &do_something foreach grep { (! conditionA) && conditionB } @tmp;