Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // This program has karel walk down the
  2. // row and clean up all of the tennis balls
  3. // on the way.
  4. function start(){
  5. while(frontIsClear()){
  6. if(ballsPresent()){
  7. takeBall();
  8. }
  9. move();
  10. }
  11. if(ballsPresent()){
  12. takeBall();
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement