Main public logs
From ROBLOX Wiki
Jump to navigationJump to search
Combined display of all available logs of ROBLOX Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:33, 10 December 2024 PRG talk contribs created page Function Dump/Coroutine Manipulation (Created page with "{{CatUp|Function Dump}} ==[http://www.lua.org/pil/9.1.html Coroutine] Manipulation== The operations related to coroutines comprise a sub-library of the basic library and come inside the table coroutine. See ยง2.11 for a general description of coroutines. '''coroutine.create (f)''' Creates a new coroutine, with body f. f must be a Lua function. Returns this new coroutine, an object with type "thread". {{Example| <pre> function f (a, b, c) print (a, b, c) end thr...")