Help for this page

Select Code to Download


  1. or download this
        foreach (@CHOICE) {
            if ($_ && /.../) { ... }
        }
    
  2. or download this
        foreach (@CHOICE) {
            $_ or next;
            if (/.../) { ... }
        }