- or download this
open (FILEHANDLE, ">not.txt") or die (Cannot open not.txt");
print FILEHANDLE "hello!";
close (FILEHANDLE);
- or download this
open (FILEHANDLE, ">not.txt") or die ("Cannot open not.txt");
print FILEHANDLE "hello!";
close (FILEHANDLE);
- or download this
use strict;
use warnings;
...
open (FILEHANDLE, ">not.txt") or die ("Cannot open not.txt");
print FILEHANDLE "hello!";
close (FILEHANDLE);