Concatenation
The string concatenation operator in Lua is denoted by two dots ('..
') and nzLua also supports using the SQL style concatenate operation using the two pipe characters ('||'). If both operands are strings or numbers, then they are converted to strings according to the rules mentioned in Coercion.
str1 = "foo" .. "bar"
str2 = str1 || "baz"