49
edits
| Line 18: | Line 18: | ||
script 'var bob fred;bob' | script 'var bob fred;bob' | ||
</lua> | </lua> | ||
Creates a function that sets and prints a variable and runs it from script, all from inside Lua. | Creates a Lua function that sets and prints a variable and runs it from script, all from inside Lua. | ||
<lua> | <lua> | ||
function alan(s) script 'bob ' + s + ';bob' end | function alan(s) script 'bob ' + s + ';bob' end | ||