How to break a line of code in Lua

Stupid question, but I can not find the answer. For example, if I had this bit of Lua code:

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

I tried to use \and /at the end of the first line, but do not seem to work. Can this be done in Lua, and if so, how?

+4
source share
1 answer
print("<html code blabla>\z
       <more html><and its long so I want to break it up like this>")
+7
source

Source: https://habr.com/ru/post/1539647/


All Articles