Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {   ## (note: using logical indenting)
       if ($found) {
    ...
       }
       elsif ...
    }
    
  2. or download this
    $found = 0;
    while (<FILE>) {
    ...
          $found = 1;
       }
    }