Jump to content

Module:OutputBuffer

विकिपीडिया से
Jackmcbarn (बातचीत | योगदान) (Created page with 'return function() local buffer = {} return function(text) buffer[#buffer + 1] = text end, function(sep) return table.concat(buffer, sep) end end') के द्वारा 23:45, 25 जून 2014 के बदलाव
(अंतर) ← पुरान बदलाव | हाल के संसोधन (अंतर) | नया बदलाव → (अंतर)
return function()
	local buffer = {}
	return function(text)
		buffer[#buffer + 1] = text
	end,
	function(sep)
		return table.concat(buffer, sep)
	end
end