RosettaCodeData/Task/Here-document/Crystal/here-document.crystal
2023-07-01 13:44:08 -04:00

6 lines
184 B
Text

puts <<-DOC
this is a heredoc
it preserves indents and newlines
the DOC identifier is completely arbitrary
it can be lowercase, a keyword, or even a number (but not a float)
DOC