Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {
      next if /\A\s*\z/ ; # skip blank lines
      next if /^\s*#/ ; # skip comments
    
  2. or download this
      next if /\A\s*(?:#|\z)/ ; skip comments and blank lines