here-document in Unverified Perl?

A here-document allows you to create a string that spreads on multiple lines and preserves white spaces and new-lines in Perl. Does this also work in Unverified Perl or is there some equivalent?
Thanks!

<code>
my $message = <<'END_MESSAGE';
Dear $name,

this is a message I plan to send to you.

regards
the Perl Maven
END_MESSAGE

Print $message;
</code>

Resolved
4 replies