9 lines
211 B
Lua
9 lines
211 B
Lua
local monitor = peripheral.find("monitor")
|
|
|
|
local function writeLine(text)
|
|
monitor.write(text)
|
|
local x, y = monitor.getCursorPos()
|
|
monitor.setCursorPos(1, y + 1)
|
|
end
|
|
|
|
return { writeLine = writeLine } |