8 lines
159 B
Lua
8 lines
159 B
Lua
local monitor = peripheral.find("monitor")
|
|
monitor.setCursorPos(1, 1)
|
|
|
|
local function run()
|
|
monitor.write("Starting system...\n")
|
|
end
|
|
|
|
return { run = run } |