Help for this page

Select Code to Download


  1. or download this
    while (!eof(DATFILE))
    
  2. or download this
    sub _read {
       my ($fh, $bytes_to_read) = @_;
    ...
          ...
       }
    }
    
  3. or download this
    {
       open(my $fh, '<:raw', $datfilename) or die $!;
    ...
          ...
       }
    }