Difference between revisions of "Coroutine.status"
From ComputerCraft Wiki
MathManiac0 (Talk | contribs) (Created Page) |
m (Moved to CAT:LuaCoreFunctions) |
||
| Line 12: | Line 12: | ||
}} | }} | ||
}} | }} | ||
| + | |||
| + | [[Category:Lua_Core_Functions]] | ||
Revision as of 18:46, 28 November 2012
| Returns the status of the coroutine; returns "running", if the coroutine is running; "suspended" if the coroutine was yielded or not running; "normal" if the coroutine is active but not running (that is, it has resumed another coroutine); and "dead" if it finished its function. | |
| Syntax | coroutine.status() |
| Returns | string status |
| Part of | ComputerCraft |
| API | Coroutine |
Examples
| Writes the status of the running coroutine. | |
| Code |
print(coroutine.status(coroutine.running())) |
| Output | running |