singe/singe/thirdparty/luasocket/gem/ex7.lua
2020-04-09 19:01:23 -05:00

16 lines
230 B
Lua

function sink.table(t)
t = t or {}
local f = function(chunk, err)
if chunk then table.insert(t, chunk) end
return 1
end
return f, t
end
local function null()
return 1
end
function sink.null()
return null
end