Coroutine.resume
From ComputerCraft Wiki
| Runs a coroutine. | |
| Syntax | coroutine.resume(coroutine, var1, var2, ...) |
| Returns | nil |
| Part of | ComputerCraft |
| API | Coroutine |
Examples
| Creates and Runs a coroutine. | |
| Code |
local co = coroutine.create(print) |
| Output | Hello World! |