Answers for "lua concatenation strng"

Lua
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