В Perl возврат каретки будет выполняться в любом месте, где есть обычные пробелы.Обратная косая черта не используется, как в некоторых языках;просто добавьте CR .
Вы можете разбить строки на несколько строк с помощью операций конкатенации или списка:
print "this is ",
"one line when printed, ",
"because print takes multiple ",
"arguments and prints them all!\n";
print "however, you can also " .
"concatenate strings together " .
"and print them all as one string.\n";
print <<DOC;
But if you have a lot of text to print,
you can use a "here document" and create
a literal string that runs until the
delimiter that was declared with <<.
DOC
print "..and now we're back to regular code.\n";
Здесь вы можете прочитать о документах в perldoc perlop .