Answers for "lua concatenation"

Lua
0

lua Concatenation

"string" .. "other string" -- returns: stringother string
Posted by: Guest on March-19-2020
1

lua concatenation

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

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

print(text1..", "..text2)
Posted by: Guest on April-20-2020

Browse Popular Code Answers by Language