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()
|
|
method 2: variables can be functions too |
|
function hello()
print("hello world!")
end
hello()
|
|