- or download this
my $html = <<END_OF_HTML;
<html>
...
END_OF_HTML
print $html;
- or download this
use strict;
use warnings;
...
--output:--
The lady said $greeting to me.
The lady said hello to me.
- or download this
say q['hello' {world}];
say q*hello ["'] world*;
...
--output:--
'hello' {world}
hello ["'] world