-
I want a multiline string in the nelua preprocessor code, something like ##[[
local multilinestring = [[
my
multi
string
]]
]]
but this won't because of |
Beta Was this translation helpful? Give feedback.
Answered by
edubart
Oct 27, 2021
Replies: 1 comment 1 reply
-
Like in Lua you can place any number of ##[==[
local multilinestring = [=[
my
multi
string
]=]
]==] |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
edubart
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Like in Lua you can place any number of
=
between[
[
to make nested long strings, so you could do: