A powerful light-weight and embeddable programming language https://lua.org/
Go to file
2024-05-13 23:29:25 +02:00
lua51-5.1.5-cflags.patch liblua51: added legacy provides for soname liblua.so.5.1 [release 5.1.5-5mamba;Mon May 13 2024] 2024-05-13 23:29:25 +02:00
lua51-5.1.5-coinstallability.patch liblua51: added legacy provides for soname liblua.so.5.1 [release 5.1.5-5mamba;Mon May 13 2024] 2024-05-13 23:29:25 +02:00
lua51-5.1.5-cve-2014-5461.patch liblua51: added legacy provides for soname liblua.so.5.1 [release 5.1.5-5mamba;Mon May 13 2024] 2024-05-13 23:29:25 +02:00
lua51.spec liblua51: added legacy provides for soname liblua.so.5.1 [release 5.1.5-5mamba;Mon May 13 2024] 2024-05-13 23:29:25 +02:00
README.md provide liblua5.1.so* using symlinks [release 5.1.5-3mamba;Sat Jul 20 2013] 2024-01-06 06:31:37 +01:00

lua51

Lua is a powerful light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, interpreted from bytecodes, and has automatic memory management with garbage collection, making it ideal for configuration, scripting, and rapid prototyping. A fundamental concept in the design of Lua is to provide meta-mechanisms for implementing features, instead of providing a host of features directly in the language. For example, although Lua is not a pure object-oriented language, it does provide meta-mechanisms for implementing classes and inheritance. Lua's meta-mechanisms bring an economy of concepts and keep the language small, while allowing the semantics to be extended in unconventional ways. Extensible semantics is a distinguishing feature of Lua.