GNU/Linux Mint Lua QuickStart Guide
Hi! The Tutorial shows you Step-by-Step How to Install Compiler and Get Started with LUA 5.x Programming in Mint LTS GNU/Linux Desktop.
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.
Finally, this guide includes detailed instructions about to Getting-Started with LUA Programming on Mint.

1. Terminal Getting-Started Guide
How to QuickStart with Command Line on Mint GNU/Linux:
Here Console Mint QuickStart GuideLink to Step-by-Step Guide on Getting Started with Command Line in Mint GNU/LinuxFirst Update the Apt Repo Sources with:
Authenticate with the User Admin Pass.Copysudo apt update
If Got “User is Not in Sudoers file” then see: How to Enable sudo.2. Installing LUA Compiler
Now to Install LUA 5.x Compiler on Mint
To Search for the available Releases:So then for instance, to Setup LUA 5.4 play:Copysudo apt search lua5
Copysudo apt install lua5.4
Testing LUA Installation
Run:The Output should simply showa the LUA Version.Copylua -v
3. Get Started LUA Programming
How to Quick Start with LUA Programming on Linux