home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
batutl
/
y_n_3.arc
/
Y-N-TEST.BAT
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1986-07-19
|
177 b
|
13 lines
echo off
Y-N Can you type Y or N ? (Y/N) :
if ERRORLEVEL 1 goto Y
if ERRORLEVEL 0 goto N
:N
echo It was N
goto END
:Y
echo It was Y
goto END
:END
echo on