Advertisement
Guest User

Lay Road Yellow

a guest
Jan 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /* Write a program to lay a row of tennis balls
  2. * across first street. Make sure to test your
  3. * program on multiple worlds. */
  4. function start(){
  5. putBall();
  6. while (frontIsClear()) {
  7.  
  8. move();
  9.  
  10. putBall();
  11. }
  12. /* Your code goes here! */
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement