Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Dance program By Al Sweigart
- Make the turtle dance! ]]
- print('Hello world!')
- -- Turtle starts dancing
- turtle.forward()
- turtle.back()
- turtle.turnRight()
- turtle.forward()
- turtle.back()
- turtle.back()
- turtle.turnLeft()
- turtle.turnLeft()
- turtle.back()
- -- Turtle spins around
- local i
- for i = 1, 4 do
- turtle.turnRight()
- end
- turtle.up()
- turtle.down()
- print('Done.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement