3.4.6 – Concatenation
The string concatenation operator in Lua is denoted by two dots ('..
'). If both operands are strings or numbers, then they are converted to strings according to the rules described in §3.4.3. Otherwise, the __concat
metamethod is called (see §2.4).
Please login to continue.