Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Eval
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
===Lua=== In [[Lua (programming language)|Lua]] 5.1, <code>loadstring</code> compiles Lua code into an anonymous function. Example as an expression evaluator: <syntaxhighlight lang="lua"> loadstring("print('Hello World!')")() </syntaxhighlight> Example to do the evaluation in two steps: <syntaxhighlight lang="lua"> a = 1 f = loadstring("return a + 1") -- compile the expression to an anonymous function print(f()) -- execute (and print the result '2') </syntaxhighlight> Lua 5.2 deprecates <code>loadstring</code> in favor of the existing <code>load</code> function, which has been augmented to accept strings. In addition, it allows providing the function's environment directly, as environments are now [[closure (computer science)|upvalues]]. <syntaxhighlight lang="lua"> load("print('Hello ' .. a)", "", "t", { a = "World!", print = print })() </syntaxhighlight>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)