Advertisement
asweigart

mydance

Aug 25th, 2017
992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. --[[ Dance program By Al Sweigart
  2. Make the turtle dance! ]]
  3.  
  4. print('Hello world!')
  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