ComputerCraft/Dash/dash.lua

8 lines
204 B
Lua
Raw Normal View History

2024-03-10 23:45:44 +03:00
local m = peripheral.find("monitor")
m.setTextScale(0.5)
local pixelbox = require("./util/pixelbox_lite")
local screen = pixelbox.new(m)
screen:set_pixel(3, 2, 1)
screen:render()
print(screen:get_size())