11 lines
123 B
Perl
11 lines
123 B
Perl
|
use warnings;
|
||
|
use strict;
|
||
|
|
||
|
my $notInterpolated = "Interpolated!";
|
||
|
|
||
|
print <<'DONE';
|
||
|
Lne 1
|
||
|
$notInterpolated.
|
||
|
|
||
|
DONE
|