Help for this page

Select Code to Download


  1. or download this
    my $file = "foo.txt";
    my $data;
    
    read($file, $data, 1024);
    
  2. or download this
    my $file = "foo.txt";
    open ($fh, $file) || die "Could not open file $file\n";
    my $data;
    
    read($fh, $data, 1024);