Dofile

From GiderosMobile
Revision as of 10:58, 3 September 2018 by Hgy29 (talk | contribs)


Available since: Gideros 2011.6
Class: (global)

Description

Opens the named file and executes its contents as a Lua chunk. When called without arguments, dofile executes the contents of the standard input (stdin). 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).

 dofile(filename)

Parameters

filename: (string) file to execute