|
> 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.