6 lines
118 B
Batchfile
6 lines
118 B
Batchfile
|
|
@echo off
|
||
|
|
set /a dummy=5/0 2>nul
|
||
|
|
|
||
|
|
if %errorlevel%==1073750993 echo I caught a division by zero operation...
|
||
|
|
exit /b 0
|