lua-users home
lua-l archive

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


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