“Lua Globals” Réponses codées

Lua Globals

-- Pure Lua:
hello = 2

-- Roblox Lua:
hello = 2
_G.hello = 2
getgenv().hello = 2
Breakable Buzzard

Lua Globals

--Getfenv used the make normal variables into a global variable

myVariable = "Hello, environments" -- Note: a global variable (non-local)
local env = getfenv()
print(env["myVariable"]) --> Hello, environments
Hypixel Offical

Variables globales 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.
]]--
Concerned Civet

Réponses similaires à “Lua Globals”

Questions similaires à “Lua Globals”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code