- or download this
print <<HEREDOC
Some lines go here
HEREDOC
; #this would be filtered out if I didn't leave a comment
- or download this
print <<HEREDOC;
Some lines go here
HEREDOC
- or download this
print <<DOUBLE_QUOTED . <<'SINGLE_QUOTED' . <<DOUBLE_QUOTED_AGAIN;
This stuff
...
SINGLE_QUOTED
This stuff is also double quoted now. \a \a \a ding ding ding!
DOUBLE_QUOTED_AGAIN
- or download this
print "XXX" . 'YYY' . "ZZZ";