home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 3
/
CDASC03.ISO
/
news
/
1601
/
read.bas
< prev
next >
Wrap
BASIC Source File
|
1993-04-01
|
214b
|
14 lines
'read testfile and display each item on its own line
open "testfile" for input as #in
[read]
while eof(#in) = 0
input #in, string$
print string$
wend
close #in