Posted 12 July 2015 - 11:26 AM
I've only recently started using computercraft, so I was expecting to run into errors, but I've been unable to find a solution(or similar problem). I was trying to make a simple testing program to clear a 21x21x2 area out, or at least to do 21x2 then turn so it is positioned to be restarted automatically. However, when i tried to put a turnaround function into the program, i recieved a - bios:366: [string "test"]:4: '(' expected - message.
—-
—-
Any help is greatly appreciated.
—-
- turtle.forward()
- local function left
- turtle.turnLeft()
- end
- local function aboutFace
- left
- turtle.forward()
- left
- end
- aboutFace()
—-
Any help is greatly appreciated.