RosettaCodeData/Task/Read-entire-file/Perl/read-entire-file-5.pl
2016-12-05 22:15:40 +01:00

7 lines
152 B
Perl

my $text;
{
local $/ = undef;
open my $fh, '<:encoding(UTF-8)', $filename or die "Could not open '$filename': $!";
$text = <$fh>;
close $fh;
}