Here document with Interpolation : Here Document « String « Perl
- Perl
- String
- Here Document
Here document with Interpolation
use warnings;
use strict;
my $notInterpolated = "Interpolated!";
print <<'DONE';
Lne 1
$notInterpolated.
DONE
Related examples in the same category