lua-users home
lua-l archive

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


On 16/08/2019 23.25, Sergey Kovalev wrote:
Lua allows to separate statements with semicolons. Will it break
anything if lua will behave same way with tables?

t={ a=1 b=2 c=3 }

t = { u = v [w] = x }

-- nobody