Coroutine.resume

From ComputerCraft Wiki
Revision as of 17:28, 13 November 2012 by MathManiac0 (Talk | contribs) (Added Page)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Grid Redstone.png  Function coroutine.resume
Runs a coroutine.
Syntax coroutine.resume(coroutine, var1, var2, ...)
Returns nil
Part of ComputerCraft
API Coroutine

Examples

Grid paper.png  Example
Creates and Runs a coroutine.
Code
local co = coroutine.create(print)
coroutine.resume(co, "Hello World!")
Output Hello World!