May 2017
Intermediate to advanced
416 pages
21h 33m
English
To create a coroutine, use the function coroutine.create. This function only creates the coroutine but is not actually executed:
local nt = coroutine.create(function() print("w00t!") end)
Read now
Unlock full access