8 lines
280 B
Lua
8 lines
280 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@param ... string
|
|
---@return string result
|
|
---Joins a list of strings (with no separator). Equivalent to strjoin("", ...). If no strings are provided, returns the empty string ("").
|
|
function strconcat(...) end
|