programming-examples/perl/String/Define variable for Here document.pl

12 lines
105 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
use warnings;
use strict;
my $variable = <<'DONE';
Line 1
Line 2
DONE
print $variable;