lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Why not create such a function as a member of the string library?
> string.concat( "there ", "I", " would look ",1, "st")

How is that different from just this?
	"there " .. "I" .. " would look ",1 .. "st"