Mega Code Archive

 
Categories / Perl / String
 

Here document with Interpolation

use warnings; use strict; my $notInterpolated = "Interpolated!"; print <<'DONE'; Lne 1 $notInterpolated. DONE