Help for this page

Select Code to Download


  1. or download this
    unless (/^#!/) {next READ if (/^\s*#/)};
    
  2. or download this
    if (/^\s*#/) { next READ } unless (/^#!/);
    
  3. or download this
    if (/^\s*#/) {
      next READ
    }
    
  4. or download this
    next READ if (/^\s*#/);