223k views
4 votes
How do I make Karel slide

User Keano
by
5.7k points

1 Answer

5 votes

Answer:

1.3.4 Slide Karel

putBall();

move();

turnRight();

move();

putBall();

turnLeft();

move();

turnRight();

move();

putBall();

turnLeft();

function turnRight() {

turnLeft();

turnLeft();

turnLeft();

}

Step-by-step explanation:

User Brpaz
by
5.2k points