Lua – Loops
Here we discuss about Lua - Loops. There may be a situation when you need to execute a block of code several number of times. In general, statements are executed…
Here we discuss about Lua - Loops. There may be a situation when you need to execute a block of code several number of times. In general, statements are executed…
An operator is a symbol that tells the interpreter to perform specific mathematical or logical manipulations. Lua language is rich in built-in operators and provides the following type of operators…
In this topic we will discuss about Lua - Data Lua is a dynamically typed language, so the variables don't have types, only the values have types. Values can be…
A variable is nothing but a name given to a storage area that our programs can manipulate. It can hold different types of values including functions and tables. The name…
Let us start creating our first Lua program! First Lua Program Interactive Mode Programming Lua provides a mode called interactive mode. In this mode, you can type in instructions one…
Local Environment Setup If you are still willing to set up your environment for Lua programming language, you need the following softwares available on your computer - (a) Text Editor,…
Lua is an extensible, lightweight programming language written in C. It started as an in-house project in 1993 by Roberto Ierusalimschy, Luiz Henrique de Figueiredo, and Waldemar Celes. It was…
Lua is an open source language built on top of C programming language. Lua has its value across multiple platforms ranging from large server systems to small mobile applications. This…