v1.7.0 - Fixed up some more stuff, changed how print() works, added to automatically load all libraries in lua shell.

This commit is contained in:
TheWahlolly
2025-05-23 18:25:23 +03:00
parent 91d9ebecb1
commit b3f1431bda
8 changed files with 43 additions and 28 deletions
+3 -3
View File
@@ -3,11 +3,11 @@ local computer = import("computer")
local function printstat(text)
termlib.cursorPosX = 35
print(text, true, false)
termlib.write(text .. "\n", false)
end
print(_OSLOGO, true, false)
termlib.cursorPosY = termlib.cursorPosY - 18
termlib.write(_OSLOGO, false)
termlib.cursorPosY = termlib.cursorPosY - 17
printstat("\27[92mOS\27[0m: ".._OSVERSION)
printstat("\27[92mArchitecture\27[0m: ".._VERSION)
local componentCounter = 0