Answers for "lua concatenate string and number"

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

Code answers related to "lua concatenate string and number"

Browse Popular Code Answers by Language