Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

dictionnary lua

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


t[exemple] = "1234"
print(t[exemple])
> 1234
 
PREVIOUS NEXT
Tagged: #dictionnary #lua
ADD COMMENT
Topic
Name
6+8 =