模組:OutputBuffer

Chók-cê̤ṳ Wikipedia

可在模組:OutputBuffer/doc建立此模組的說明文件

return function()
	local buffer = {}
	return function(sep)
		local b = buffer
		buffer = {}
		return table.concat(b, sep)
	end,
	function(text)
		buffer[#buffer + 1] = text
	end,
	function(...)
		buffer[#buffer + 1] = string.format(...)
	end
end