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