如何在Lua中断代码行

愚蠢的问题,但我似乎找不到答案。例如,如果我有这段 Lua 代码:

print("<html code blabla>
   <more html><and its long so I want to break it up like this>")

我尝试使用 \/ 在第一行的结尾处,但似乎不起作用。 在 Lua 中是否有可能实现这样的效果,如果有,请教如何做到?

点赞
用户1847592
用户1847592
print("<html code blabla>\z
       <more html><and its long so I want to break it up like this>")

将上述代码翻译成中文并保留原始的 Markdown 格式:

print("<html code blabla>\z
       <more html><and its long so I want to break it up like this>")
2014-05-07 20:03:34