home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / dobbs / v17n02 / turtle.exe / SAMPLE < prev    next >
Encoding:
Text File  |  1991-08-03  |  463 b   |  19 lines

  1. #################################################
  2. #                                               #
  3. # Sample Turtle Script (part 1 of 3)            #
  4. #                                               #
  5. #################################################
  6. # show screen
  7. show on
  8. # clear screen and move cursor near center
  9. clear
  10. penup
  11. setxy 150 100
  12. pencolor 15
  13. pendown
  14. # draw pentagon 10 times
  15. repeat 10 sample.001
  16. # pause until key press
  17. show
  18. show off
  19.