Loadstring

From GiderosMobile
Revision as of 11:40, 23 August 2018 by Hgy29 (talk | contribs)

Available since: Gideros 2011.6

Description

Gets the chunk from the given string. To load and run a given string, use the idiom

    `assert(loadstring(s))()`

Chunkname is used as the chunk name for error messages and debug information. When absent, chunkname defaults to the given string.

(function) = loadstring(string,chunkname)

Parameters

string: (string) string to load and compile
chunkname: (string) is used as the chunk name for error messages and debug information. optional

Return values

Returns (function) compiled chunk as a function; otherwise, returns nil