2013-04-10 21:29:02 -07:00
|
|
|
print([[
|
|
|
|
|
This is a long paragraph of text
|
|
|
|
|
it is the simplest while using it
|
|
|
|
|
with lua, however it will have the
|
|
|
|
|
same line breaks and spacing as
|
|
|
|
|
you set in this block.
|
|
|
|
|
]])
|
|
|
|
|
|
2020-02-17 23:21:07 -08:00
|
|
|
print([=[by using equals signs, ]] may be embedded.]=])
|
|
|
|
|
|
2013-04-10 21:29:02 -07:00
|
|
|
local msg = [[this is a message that spans
|
|
|
|
|
multiple lines and will have the next lines
|
|
|
|
|
preserved as they were entered, so be careful
|
|
|
|
|
when using this]]
|
|
|
|
|
|
|
|
|
|
print(msg)
|