lua 5.5.0

dotnet add package lua --version 5.5.0
                    
NuGet\Install-Package lua -Version 5.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="lua" Version="5.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="lua" Version="5.5.0" />
                    
Directory.Packages.props
<PackageReference Include="lua" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add lua --version 5.5.0
                    
#r "nuget: lua, 5.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package lua@5.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=lua&version=5.5.0
                    
Install as a Cake Addin
#tool nuget:?package=lua&version=5.5.0
                    
Install as a Cake Tool

Lua

Lua is a powerful, fast, lightweight, embeddable scripting language.

Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.

Lua is free open-source software, distributed under a very liberal license (the well-known MIT license).

Project Website: https://www.lua.org/

Product Compatible and additional computed target framework versions.
native native is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.5.0 51 12/27/2025
5.4.8 965 6/4/2025
5.4.7.2 1,958 10/3/2024
5.4.7.1 367 9/28/2024 5.4.7.1 is deprecated.
5.4.7 1,531 6/27/2024
5.4.6 13,212 5/14/2023
5.4.5 664 5/4/2023 5.4.5 is deprecated.
5.4.4.1 2,593 12/20/2022
5.4.4 3,303 1/27/2022
5.4.3 3,124 3/29/2021
5.4.2 2,782 12/5/2020
5.4.1 2,734 10/10/2020
5.4.0 1,677 6/30/2020
5.3.6 1,873 9/25/2020
5.3.5.2 1,303 5/29/2020
5.3.5.1 3,376 8/17/2019
5.3.5 4,699 7/10/2018
5.3.4 7,504 6/15/2017
5.3.3 7,144 10/20/2016
5.3.2 3,051 5/11/2016

Here are the main changes introduced in Lua 5.5.
Its main new features are declarations for global variables, named vararg tables, more compact arrays, and major garbage collections done incrementally.
See: https://www.lua.org/manual/5.5/readme.html#changes
The reference manual lists the incompatibilities that had to be introduced: https://www.lua.org/manual/5.5/manual.html#8