Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. if (colorIs(Color.blue)) {
  2. paint(Color.red);
  3. } else {
  4. paint(Color.blue);
  5. }
  6. while (frontIsClear()) {
  7. move();
  8. if (colorIs(Color.blue)) {
  9. paint(Color.red);
  10. } else {
  11. paint(Color.blue);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement