Mega Code Archive

 
Categories / Perl / String
 

Define variable for Here document

use warnings; use strict; my $variable = <<'DONE'; Line 1 Line 2 DONE print $variable;