ヒアドキュメント

複数行の文字列をコード上で扱う場合は、ヒアドキュメントを定義する。

ヒアドキュメント - 複数行の文字列を簡単に作成 - Perl入門ゼミ

"$text = <<END"と書くと、ENDの前の行までが$textに格納される文字列になる。

$ perl here_document.pl
ABCDE
FGHIJ
KLMNO
PQRST
UVWXY
Z
$

複数行を出力できた。

Sample/perl/here_document/here_document/src/here_document at master · bg1bgst333/Sample · GitHub