Answers for "dictionnary lua"

Lua
1

dictionnary lua

t = {
	["text"] = "Hello world !"
}
print(t["text"])
>   Hello world !


t[exemple] = "1234"
print(t[exemple])
> 1234
Posted by: Guest on February-24-2021

Browse Popular Code Answers by Language