Advertisement
Guest User

mydance

a guest
Jul 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. --[[Dance program by Al Sweigart
  2. Make the turle dance!]]
  3.  
  4. print('Time to dance!')
  5.  
  6. --Turtle starts dancing
  7. turtle.forward()
  8. turtle.back()
  9. turtle.turnRight()
  10. turtle.forward()
  11. turtle.back()
  12. turtle.back()
  13. turtle.turnLeft()
  14. turtle.turnLeft()
  15. turtle.back()
  16. turtle.turnRight()
  17.  
  18. --Turtle spins around
  19. for i = 1,4 do
  20.   turtle.turnRight()
  21. end
  22.  
  23. turtle.up()
  24. turtle.down()
  25. print('Done.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement