Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. local robot = require("robot");
  2. robot.up();
  3. robot.forward();
  4. for i=0,1,200 do
  5. for j=0,1,5 do
  6. print(j);
  7. robot.placeDown();
  8. if j==5 then
  9. robot.turnRight();
  10. else
  11. robot.forward();
  12. end
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement