Difference between revisions of "Dofile"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Opens the named file and executes its contents as a Lua chunk. When called without arguments, dofile e...") |
|||
Line 4: | Line 4: | ||
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). | 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). | ||
<source lang="lua"> | <source lang="lua"> | ||
− | + | dofile(filename) | |
</source> | </source> | ||
− | '''filename | + | '''filename''': (string) file to execute ''''''<br/> |
Revision as of 10:20, 23 August 2018
Available since: Gideros 2011.6
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)
'filename: (string) file to execute '