Define variable for Here document : Here Document « String « Perl
- Perl
- String
- Here Document
Define variable for Here document
use warnings;
use strict;
my $variable = <<'DONE';
Line 1
Line 2
DONE
print $variable;
Related examples in the same category