home *** CD-ROM | disk | FTP | other *** search
- // Program 3.1
-
- USE Turtle
-
- graphicscreen(0) // Open the graphics system
-
- forward(50) // Draw a square
- right(90)
- forward(50)
- right(90)
- forward(50)
- right(90)
- forward(50)
- right(90)
-
- WAIT 4 // Time to look at the drawing
-
- textscreen // Close the graphics system
-