| |
| | LUA/lua50betaref.e (htmlized) |
 | | Lua is dynamically typed, interpreted from opcodes, and has automatic memory management with garbage collection, making it ideal for configuration, scripting, and rapid prototyping. |
 | | Lua is implemented as a library, written in C. Being an extension language, Lua has no notion of a ``main'' program: it only works embedded in a host client, called the embedding program or simply the host. |
 | | To have access to these libraries, the C host program must call the functions lua_baselibopen (for the basic library), lua_strlibopen (for the string library), lua_tablibopen (for the table library), lua_mathlibopen (for the mathematical library), lua_iolibopen (for the I/O and the Operating System libraries), and lua_dblibopen (for the debug library), which are declared in lualib.h. |
| www.mat.puc-rio.br /~edrx/LUA/lua50betaref.e.html (15441 words) |
|