add strings together on lua code example
Example: lua concatenation
-- to concatenate use two dots like this => ..
-- Example:
text1 = "Hello"
text2 = "World"
print(text1..", "..text2)
-- to concatenate use two dots like this => ..
-- Example:
text1 = "Hello"
text2 = "World"
print(text1..", "..text2)