legacy-dotfiles/emacs.d/nxhtml/tests/in/heredoc.pl

12 lines
164 B
Perl
Raw Normal View History

$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