Skip to content

Instantly share code, notes, and snippets.

@jdubie
Created August 14, 2011 17:43
Show Gist options
  • Save jdubie/1145112 to your computer and use it in GitHub Desktop.
Save jdubie/1145112 to your computer and use it in GitHub Desktop.
Karel Fills Potholes
//write your karel javascript
//code here.
function run() {
while(frontIsClear()) {
fillHole();
}
}
function fillHole() {
move();
turnRight();
move();
putBeeper();
turnLeft();
turnLeft();
move();
turnRight();
move();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment