RosettaCodeData/Task/Find-limit-of-recursion/Batch-File/find-limit-of-recursion-2.bat
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

6 lines
111 B
Batchfile

@echo off
set /a c=c+1
echo [Depth %c%] Mung until no good
call mung.cmd
echo [Depth %c%] No good
set /a c=c-1