home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hall of Fame
/
HallofFameCDROM.cdr
/
tutor
/
rurc3.lzh
/
RUNME.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-10-26
|
476b
|
27 lines
echo off
cls
echo
echo To run "ARE YOU READY FOR CALCULUS III?" with a color monitor, select 1.
echo
echo To run "ARE YOU READY FOR CALCULUS III?" with a monochrome monitor, select 2.
echo
getkey To quit, press any other key.
echo
if errorlevel 51 goto END
if errorlevel 50 goto TWO
if errorlevel 49 goto ONE
goto END
:TWO
echo
echo Please wait.
echo
rurciii n
goto END
:ONE
echo
echo Please wait.
echo
rurciii c
goto END
:END