in reply to print multiple lines

Probably the most common method is heredoc strings:
print F <<EOT; Here's one line and another line and even some "quoted" data... EOT
I like to use EOT as my "here doc" string, but you can use anything you want to.