lua-users home
lua-l archive

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


The manual is quite clear on coroutines (section 2.11). coroutine.create produces an object of type "thread" that the coroutine functions operate on. The "coroutines" in this case would be the functions that make calls to coroutine.yield, although, type would return "function" for them.