Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 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. robot.placeDown();
  7. if j==5 then
  8. robot.turnRight();
  9. else
  10. robot.forward();
  11. end
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement