Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
        unless ( /\A#|^$/ ) {
    ...
            }
        }
    }
    
  2. or download this
    while (<DATA>) {
      next if /^\s*#/;
    ...
        $hash{$f[0]} = $f[1];
      }
    }