Advertisement
NukityMcNuker

what is this even

Jul 27th, 2021
1,230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. function pyramid(moves)
  2.   i = 0
  3.   for i=0,moves,1 do
  4.     turtle.place()
  5.     turtle.forward()
  6.     turtle.turnLeft()
  7.   end
  8. end
  9.  
  10. o = 0
  11. for o = 0,5,1 do
  12.   pyramid(moves-o)
  13.   turtle.down()
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement