모듈:OutputBuffer
From 더 스토리즈 대피소
Jump to navigation
Jump to search
이 모듈에 대한 설명문서는 모듈:OutputBuffer/설명문서에서 만들 수 있습니다
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
Cookies help us deliver our services. By using our services, you agree to our use of cookies.