在Perl中,可以使用print语句来输出多行内容。有两种方法可以实现这个目的:
print "This is line 1\n"; print "This is line 2\n"; print "This is line 3\n";
print <<END; This is line 1 This is line 2 This is line 3 END
在上面的例子中,END表示结束here文档的标记,可以使用任何你想要的标识符。在这个标记之间的内容将被输出为多行字符串。