local d = { ["left"] = turtle.turnLeft, ["right"] = turtle.turnRight, ["around"] = function () turtle.turnLeft() turtle.turnLeft() end}local a = {...}for i = 1, a[2] or 1 do d[a[1]]() end