Difference between revisions of "Loadstring"
From GiderosMobile
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''<translate>Available since</translate>:''' Gideros 2011.6<br/> | '''<translate>Available since</translate>:''' Gideros 2011.6<br/> | ||
+ | '''<translate>Class</translate>:''' [[Special:MyLanguage/(global)|(global)]]<br/> | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate>Gets the chunk from the given string. | <translate>Gets the chunk from the given string. | ||
To load and run a given string, use the idiom | 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.</translate> | Chunkname is used as the chunk name for error messages and debug information. When absent, chunkname defaults to the given string.</translate> |
Revision as of 09:27, 24 August 2018
Available since: Gideros 2011.6
Class: (global)
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