This commit is contained in:
2025-06-15 15:49:54 -04:00
parent bf6afc1dc2
commit 593de8b26f

View File

@@ -20,7 +20,10 @@ local function run()
print("Waiting for environment signal...")
sleep(1)
end
peripheral.getMethods("left")
local methods = peripheral.getMethods("left")
for index, value in ipairs(methods) do
print("Method " .. index .. ": " .. value)
end
--parallel.waitForAll(runMonitor)
end