programming-examples/perl/String/The Heredoc Operator without Variable Interpolation.pl

13 lines
190 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
sub printHeaders(){
print<<'eof';
Content-Type: text/html
<HTML>
<HEAD>
<TITLE>Page</TITLE>
</HEAD>
<BODY background="back.gif">
eof
return (1);
}