You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/perl/File/Pass file handle reference ...

16 lines
188 B
Perl

5 years ago
sub printem
{
my $file = shift;
while (<$file>) {
print;
}
}
open FILEHANDLE, "<file.txt" or die "Can not open file";
printem *FILEHANDLE;