Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Karel should put a ball on the first spot
- // if there isn't one already there and then move.
- function start() {
- if(noBallsPresent()) {
- putBall();
- }
- move();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement