Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

lua concatenation

-- to concatenate use two dots like this =>  ..

-- Example:
text1 = "Hello"
text2 = "World"

print(text1..", "..text2)
 
PREVIOUS NEXT
Tagged: #lua #concatenation
ADD COMMENT
Topic
Name
6+5 =