Variable
A variable is something that can be created, changed and referenced:
-- Creating
local myVariable = 0
-- Changing
myVariable = 3
-- Referencing
print(myVariable * 5)
-->
A variable is something that can be created, changed and referenced:
-- Creating
local myVariable = 0
-- Changing
myVariable = 3
-- Referencing
print(myVariable * 5)