SuperKarel
A Smarter Karel the Dog
function jumpHurdle() {
turnLeft();
move();
turnRight();
move();
turnRight();
move();
turnLeft();
}
function turnRight() {
turnLeft();
turnLeft();
turnLeft();
}Last updated