Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
16
Task/Here-document/Lua/here-document.lua
Normal file
16
Task/Here-document/Lua/here-document.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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.
|
||||
]])
|
||||
|
||||
print([=[by using equals signs, ]] may be embedded.]=])
|
||||
|
||||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue