Help for this page

Select Code to Download


  1. or download this
    open(DAT, $fileName) || die "Could not open $fileName - $!\n";
    
  2. or download this
    open(DAT, $fileName) || die "Could not open $fileName - $!\n";
    while (<DAT>) {
       print $_, "\n";
    }
    close(DAT);