lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


In the statement x = [[]], the outer tuple is not empty. Therefore I do not think this presents a conflict.

As Luiz said, [[ ]] denotes already a (multiline) string constant in Lua.
https://www.lua.org/manual/5.3/manual.html#3.1

So x would be an empty string, or the suggested array literal containing an empty array literal.