94d2fc1815
* Added nxhtml, mostly for django support. * Changed some org settings.
11 lines
164 B
Perl
11 lines
164 B
Perl
$text = 'Text from a Perl string.';
|
|
print <<HTML;
|
|
<html>
|
|
<head>
|
|
<title>Here-Doc Example</title>
|
|
</head>
|
|
<body>
|
|
<h1>Here-Doc Example</h1>
|
|
<p>$text</p>
|
|
</body>
|
|
HTML
|