0
Does anyone know the answer to the karel code 4.3.1 Face the right direction?
Karel the dog lesson 4.3.1
2 Réponses
0
function start()
{
if(noBallsPresent()){
turnLeft();
turnLeft();
} else {
turnRight();
}
}
0
D