lua-users home
lua-l archive

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


> local assert (conn:send ("user\n"))

This isn't even valid Lua syntax! How can the script possibly run?
Valid syntax would either be:

assert (conn:send ("user\n"))
local result = assert (conn:send ("user\n"))

But the second form seems useless is this case.