string
A string is a basic Lua type, it represents a sequence of characters. They are initialized with double quotes framing characters.
local s = "hello world" print(s) -- prints "hello world"
Strings can be concatenated with the .. operator.
local a = "hello" local b = "world" local c = a .. " " .. b print(c) -- prints "hello world"