coroutine.create
From ComputerCraft Wiki
Revision as of 18:50, 30 November 2012 by AfterLifeLochie (Talk | contribs) (Function -> Function (type))
| Creates a new coroutine | |
| Syntax | coroutine.create(function function) |
| Returns | coroutine new coroutine |
| Part of | ComputerCraft |
| API | Coroutine |
Examples
| creates a coroutine. | |
| Code |
coroutine.create(function() print("Hello World") end)
|