home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
VISUAL_B
/
ARQS_ZIP
/
APBSU100.ZIP
/
DISPLAY.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
|
1991-05-26
|
267 b
|
15 lines
set break on
open "c:\pcwrite\astrolog\encyclop\astrolo1.doc" for input as #1
while not eof(1)
line input #1, nextline$
print nextline$
if inkey$=chr$(32) then gosub wait
wend
close #1
end
wait:
a$=inkey$
if a$="" then goto wait
return