Help for this page

Select Code to Download


  1. or download this
    if (cond) {
       ...stuff...
    }
    ...
       }
       #nothing here, either
    }
    
  2. or download this
    if (cond1) {
       ...stuff...
    ...
    elsif (cond2) {
       ...more stuff...
    }
    
  3. or download this
    while (<FILE>) {
       if ($ban_gate==1) {
    ...
          }
       }
    }
    
  4. or download this
    while (<FILE>) {
       if ($state eq 'BANNER') {
    ...
          # process a line in the ras section
       }
    }