This commit is contained in:
2025-12-10 20:03:56 -05:00
parent 6fa6a024dc
commit f32a319279
2 changed files with 6 additions and 2 deletions

View File

@@ -12,6 +12,7 @@
},
"Lua.workspace.checkThirdParty": false,
"Lua.diagnostics.disable": [
"lowercase-global"
"lowercase-global",
"need-check-nil"
]
}

View File

@@ -1,5 +1,8 @@
local monitor = peripheral.find("monitor")
monitor.setCursorPos(1, 1)
local function run()
Monitor.write("Starting system...\n")
monitor.write("Starting system...\n")
end
return { run = run }