Advertisement
Guest User

Yellow Ball Road

a guest
Jan 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. // Follow the yellow ball road!
  2. // Karel moves until it's not on a tennis ball.
  3. function start() {
  4. while (ballsPresent()) {
  5. move();
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement