Стрижка овец
Код
local robot = require("robot")
local component = component("component")
local term = require("term")
term.clear()
term.setCursor(1,1)
io.write("Привет, я робот! Моя задача стричь овец")
function chest()
for i=1,16 do if robot.count(i)>0 then robot.select(i) robot.dropUp() end end
end
while true do
for i=1,10 do robot.use() os.sleep(1) end
os.sleep(5) --дрыхнет еще несколько минут
if robot.count(15) then chest() end --выкинули хлам
end