luasocket/gem/ex5.lua

16 lines
328 B
Lua
Raw Normal View History

2007-10-11 23:16:28 +02:00
function source.empty(err)
return function()
return nil, err
end
end
function source.file(handle, io_err)
if handle then
return function()
local chunk = handle:read(20)
if not chunk then handle:close() end
return chunk
end
else return source.empty(io_err or "unable to open file") end
end