Difference between revisions of "Coroutine.create"
From ComputerCraft Wiki
MathManiac0 (Talk | contribs) (Created Page) |
m (Moved to CAT:LuaCoreFunctions) |
||
Line 13: | Line 13: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:Lua_Core_Functions]] |
Revision as of 18:46, 28 November 2012
Function coroutine.create | |
Creates a new coroutine | |
Syntax | coroutine.create(function function) |
Returns | coroutine new coroutine |
Part of | ComputerCraft |
API | Coroutine |
Examples
Example | |
creates a coroutine. | |
Code |
coroutine.create(function() print("Hello World") end) |