programming-examples/perl/String/The Heredoc Operator without Variable Interpolation.pl
2019-11-15 12:59:38 +01:00

13 lines
190 B
Perl

sub printHeaders(){
print<<'eof';
Content-Type: text/html
<HTML>
<HEAD>
<TITLE>Page</TITLE>
</HEAD>
<BODY background="back.gif">
eof
return (1);
}