跳至內容

模組:OutputBuffer

文出維基大典
本版日期︰二〇一七年九月一〇日 (日) 〇二時二九分;作者︰Cewbot
(辨) ←舊本 | 今審 (辨) | 新→ (辨)

可在模組: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