##
#! /usr/bin/perl -w
use strict;
my $file = "raw_text";
open(FILE, "< $file") or die "Cannot open '$file': $!";
my $contents = join '', ;
print "HERE ARE THE CONTENTS OF $file:\n";
print $contents;
## ##
HERE ARE THE CONTENTS OF raw_text:
hello world.
This is a backslash: \
Here are 10 of them: \\\\\\\\\\