Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2.  
  3. function wall (width, height)
  4. y = 0
  5.  
  6. while y < height do
  7. x = 0
  8.  
  9. turtle.turnLeft()
  10. turtle.turnLeft()
  11.  
  12. while x < widht do
  13. turtle.back()
  14. turtle.place()
  15.  
  16. x = x + 1
  17. end
  18.  
  19. turtle.up()
  20. turtle.forward()
  21.  
  22. y = y + 1
  23. end
  24. end
  25.  
  26. wall (5, 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement