lua-users home
lua-l archive

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


The following script crashes lua.exe under Win2K/VC.NET. 

-----------------------------------------------
function co_func (current_co)
   coroutine.resume(current_co)
end

local co = coroutine.create(co_func)
coroutine.resume(co, co)
-----------------------------------------------

Could you please verify this on your system? 

Thanks,
Alex