Answers for "global variables lua"

Lua
2

lua make variable global

varname = varval
Posted by: Guest on March-19-2020
2

lua variable

-- Private Variable
local name1 = "John"

-- Public Variable
name2 = "Jane"

print(name1)
print(name2)
Posted by: Guest on March-02-2020
0

global variables lua

--[[
Global variables don't need a declaration like "local." Instead, you'd just
write like this:
]]--

variable = --value

--[[ 
Note, you don't always have to even assign a value to a variable. You can
use it for the first time and get a value of "nil" which you can update later.
]]--
Posted by: Guest on January-15-2021

Code answers related to "global variables lua"

Browse Popular Code Answers by Language