home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
pcmag
/
vol8n08.arc
/
FAST.BAS
< prev
next >
Wrap
BASIC Source File
|
1988-09-25
|
216b
|
13 lines
'Run this program with and without the
'following line to see the difference
SHELL "CLS"
CLS
DIM Array$(72)
FOR X = 1 TO 72
Array$(X) = STRING$(79, X + 32)
NEXT
FOR X = 1 TO 72
PRINT Array$(X);
NEXT