mirror of
https://github.com/etlegacy/etlegacy-lua-docs.git
synced 2024-11-10 06:51:49 +00:00
15 lines
800 B
ReStructuredText
15 lines
800 B
ReStructuredText
|
==================
|
||
|
Standard libraries
|
||
|
==================
|
||
|
|
||
|
The following standard Lua libraries are initialized by default and available to Legacy Lua scripts:
|
||
|
|
||
|
* `basic <http://www.lua.org/manual/5.3/manual.html#6.1>`_
|
||
|
* `string <http://www.lua.org/manual/5.3/manual.html#6.4>`_
|
||
|
* `table <http://www.lua.org/manual/5.3/manual.html#6.6>`_
|
||
|
* `math <http://www.lua.org/manual/5.3/manual.html#6.7>`_
|
||
|
* `i/o <http://www.lua.org/manual/5.3/manual.html#6.8>`_
|
||
|
* `os <http://www.lua.org/manual/5.3/manual.html#6.9>`_ (available features vary depending on your OS)
|
||
|
|
||
|
.. tip:: For more information about Lua, check out the `Reference Manual <http://www.lua.org/manual/5.3/>`_, the online edition of the book `Programming in Lua <http://www.lua.org/pil/>`_ or the `Lua-users wiki <http://lua-users.org/wiki/>`_.
|