
The Programming Language Lua
Official website of the Lua language. about; news; get started; download; documentation; community; site map
Getting started - Lua
Lua is designed to be a lightweight embeddable scripting language. It is used for all sorts of applications, from games to web applications and image processing. See the about page for a …
Lua 5.3 Reference Manual - contents
Lua 5.3 Reference Manual The reference manual is the official definition of the Lua language. For a complete introduction to Lua programming, see the book Programming in Lua.
About - Lua
Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven …
Download - Lua
Lua is implemented in pure ANSI C and compiles unmodified in all platforms that have an ANSI C compiler. Lua also compiles cleanly as C++. Lua is very easy to build and install.
Lua: reference manuals
Apr 10, 2024 · The official definition of the Lua language is its reference manual, which describes the syntax and the semantics of Lua, the standard libraries, and the C API. For a detailed …
Documentation - Lua
The official definition of the Lua language is its reference manual, which describes the syntax and the semantics of Lua, the standard libraries, and the C API. The reference manuals for all …
Lua 5.1 Reference Manual
Lua is an extension programming language designed to support general procedural programming with data description facilities. It also offers good support for object-oriented programming, …
Lua 5.1 Reference Manual - contents
May 5, 2021 · Lua 5.1 Reference Manual The reference manual is the official definition of the Lua language. For a complete introduction to Lua programming, see the book Programming in Lua .
Programming in Lua : 3.2
Lua provides the following relational operators: < > <= >= == ~= All these operators always result in true or false. The operator == tests for equality; the operator ~= is the negation of equality. …