tags:

views:

45

answers:

1

In Linux, the return value of the main function is stored in $?, and can be shown using echo $?. Is there something equivalent in Windows?

+7  A: 
echo %ERRORLEVEL%
dcp