[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: was luahttpd, now new luathread
- From: duck <duck@...>
- Date: Mon, 17 Jan 2005 11:34:44 +0000
> I was just shamelessly fishing for feedback. I know at least 3 people
> downloaded it. :)
I have one quick question. I suppose I should stare at the code and swot
up on the Lua core unti I understand it, but I'll ask instead :-)
How come:
function bomb()
return "string" .. nil
end
bomb()
produces a stack traceback, as one would expect, whilst:
function bomb()
return "string" .. nil
end
thread.newthread(bomb,{})
doesn't?