Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function moveLeft()
  2.  
  3. turtle.turnLeft()
  4. turtle.forward()
  5. turtle.turnRight()
  6.  
  7. end
  8.  
  9. function buildRow(lenght)
  10.  
  11.  
  12.  
  13. for a=1,lenght do
  14.  
  15. turtle.place()
  16. moveLeft()
  17. turtle.up()
  18. turtle.place()
  19. turtle.down()
  20. moveLeft()
  21.  
  22. end
  23. end
  24.  
  25. buildRow(5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement