made io create a default sink fd

This commit is contained in:
Izaya 2019-01-09 14:09:57 +11:00
parent 95e6a18216
commit 517d579bb9
1 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,7 @@ _G.fd,_G.io = {},{}
function io.write(d) -- writes *d* to stdout
fd[os.getenv("t") or 1].write(d)
end
function io.read(d,b) -- reads *d* from stdin, until something is returned, or the thing returned equals *b*
function io.read(d,b) -- reads *d* from stdin, until something is returned, or b is true
local r = ""
repeat
r=fd[os.getenv("t") or 1].read(d)
@ -63,3 +63,12 @@ function io.open(f,m) -- opens file *f* with mode *m*
return t
end
end
do
local fdi,nfd = io.newfd()
function nfd.read()
end
function nfd.write()
end
function nfd.close()
end
end