override local variable lua code example
Example 1: lua make variable local
local varname = varval
Example 2: lua add 1 to a variable
variable = variable + 1
// you cannot use += notation to iterate a variable
local varname = varval
variable = variable + 1
// you cannot use += notation to iterate a variable