49
edits
| Line 31: | Line 31: | ||
; // script statement delimiter processed in script | ; // script statement delimiter processed in script | ||
exit // script | exit // script | ||
</kua> | |||
This however would run ';' delimited statements in one Lua chunk, using the 'lua' context 'run' command. And then still run the script exit: | |||
<kua> | |||
context lua | |||
run `print(1+2);print(1+2)`;exit | |||
</kua> | </kua> | ||