From 1c416be625cab6365c904e5229c95e8021a29690 Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Wed, 6 Nov 2019 14:31:28 +1100 Subject: [PATCH] made the version thingo print a line this is important --- exec/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/init.lua b/exec/init.lua index ffd4781..f365cf6 100644 --- a/exec/init.lua +++ b/exec/init.lua @@ -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