The Heredoc Operator without Variable Interpolation : Here Document « String « Perl
- Perl
- String
- Here Document
The Heredoc Operator without Variable Interpolation
sub printHeaders(){
print<<'eof';
Content-Type: text/html
<HTML>
<HEAD>
<TITLE>Page</TITLE>
</HEAD>
<BODY background="back.gif">
eof
return (1);
}
Related examples in the same category