Basic lua: Functions

From The Official Visionaire Studio: Adventure Game Engine Wiki
Revision as of 02:14, 3 September 2022 by AFRLme (talk | contribs)
< Index >

Tables are one of the features of Lua script, that make the scripting language so dynamic & easy to use, as they allow us to easily create tables, insert, remove & sort data. Tables are often comprised of arrays that usually involve keywords - or an index number - & a value. Tables can be accessed using multiple different methods.

Creating a function

method 1: function operator
function hello()
 print("hello world!")
end

hello()
Basic lua (functions) 1.png
method 2: variables can be functions too
function hello()
 print("hello world!")
end

hello()
Basic lua (functions) 1.png
< Index >