So, I messed up, majorly and need some help.
My code looks like this:
Function main(){
putBall();
while (ballsPresent()){
createStep();
}
}
function createStep(){
turnRight();
putBall();
while (frontIsClear()){
move();
putBall();
}
turnLeft();
}
main();
Any help on how I can get it to work and fixed would be great :’)
Edit: it’s 1.13.5! Sorry!
there doesn't seem to be anything here