made the version thingo print a line this is important

This commit is contained in:
Izaya 2019-11-06 14:31:28 +11:00
parent ff321804ee
commit 1c416be625
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ for k,v in pairs(fs.list("/dev/")) do
if v:sub(1,3) == "tty" then
dprint(tostring(io.input("/dev/"..v)))
dprint(tostring(io.output("/dev/"..v)))
io.write(_OSVERSION.." - "..tostring(math.floor(computer.totalMemory()/1024)).."K RAM")
print(_OSVERSION.." - "..tostring(math.floor(computer.totalMemory()/1024)).."K RAM")
os.spawnfile("/boot/exec/shell.lua")
end
end