This article is tagged with:
Lua concatenation
and lua
lua concatenation
-- to concatenate use two dots like this => ..
-- Example:
text1 = "Hello"
text2 = "World"
print(text1..", "..text2)
lua Concatenation
"string" .. "other string" -- returns: stringother string