Function Dump/Coroutine Manipulation: Revision history

From ROBLOX Wiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 December 2024

  • curprev 23:3323:33, 10 December 2024 PRG talk contribs 3,502 bytes +3,502 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..."