home *** CD-ROM | disk | FTP | other *** search
- ' draw a diagonal line across the screen
- SCREEN 1,0
- LINE (0,0) - (319,199)
- ' draw a horizontal dashed line
- LINE (0,100) - (319,100),,,&HCCCC
- ' draw a 50-pixel square filled with color 2
- ' with the upper left-hand corner at (10,20)
- LINE (10,20) - (60,70), 2, BF
- ' draw a large "B"
- READ x,y
- PSET (x,y) 'set the LPR
- FOR n = 1 TO 11
- READ x,y
- LINE - (x,y)
- NEXT n
- DELAY 2
- END
-
- DATA 10,20, 50,20, 55,25, 55,40, 50,45, 10,45
- DATA 50,45, 55,50, 55,65, 50,70, 10,70, 10,20