Concept Flow - Heredoc syntax for multiline strings
Start
Declare heredoc with <<IDENTIFIER
Write multiple lines of text
End heredoc with IDENTIFIER alone on a line
Use the multiline string variable
End
The program starts by declaring a heredoc with <<IDENTIFIER, then writes multiple lines, ends the heredoc with the IDENTIFIER alone on a line, and finally uses the multiline string.