home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
w3_prog
/
lbas09p2.arj
/
READ.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1992-03-28
|
214 b
|
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