About 1,390 results
Open links in new tab
  1. The Programming Language Lua

    Official website of the Lua language. about; news; get started; download; documentation; community; site map

  2. 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 …

  3. 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.

  4. About - Lua

    Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven …

  5. 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.

  6. 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 …

  7. 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 …

  8. 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, …

  9. 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 .

  10. 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. …