Advertisement
asweigart

Untitled

Dec 6th, 2016
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 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.  
  17. -- Turtle spins around
  18. local i
  19. for i = 1, 4 do
  20. turtle.turnRight()
  21. end
  22. turtle.up()
  23. turtle.down()
  24. print('Done.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement