home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
windows
/
win31
/
lb09d.arj
/
PROFILE.BAS
< prev
next >
Wrap
BASIC Source File
|
1992-03-02
|
347b
|
21 lines
'read profile.txt and display each item on its own line
OPEN"PROFILE.txt" FOR INPUT AS #1
[read]
INPUT #1, name$, address$, city$, state$, zip$, phone$
PRINT name$
PRINT address$
PRINT city$
PRINT state$
PRINT phone$
PRINT
if eof(#1) = 0 then [read]
PRINT"Done."
CLOSE #1