Difference between revisions of "Dofile"

From OpenEUO
Jump to: navigation, search
(Created page with " dofile (filename) Opens the named file and executes its contents as a Lua chunk. Returns all values returned by the chunk. In case of errors, dofile propagates the error to its...")
(No difference)

Revision as of 16:54, 7 October 2010

dofile (filename)

Opens the named file and executes its contents as a Lua chunk. Returns all values returned by the chunk. In case of errors, dofile propagates the error to its caller (that is, dofile does not run in protected mode).