home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
windows
/
win31
/
lb09d.arj
/
READ.BAS
< prev
next >
Wrap
BASIC Source File
|
1992-03-28
|
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