- Aug
- 2,241
- 105
This script;
Works as it should when run from TCC;
...but when running from BDEBUGGER, I get a
when stepping through the code.
When running from BDEBUGGER without stepping through the code, same result.
Joe
Code:
@setlocal
@echo off
ver
library /u /r %0
set kount=0
Sub1
echo From %0: %kount
endlocal
quit
Sub1 {
set kount=%@eval[%kount+1]
echo From Sub1: %kount
}
Works as it should when run from TCC;
Code:
c:\users\jlc\utils>test.btm
TCC 22.00.25 x64 Windows 7 [Version 6.1.7601]
From Sub1: 1
From test.btm: 1
...but when running from BDEBUGGER, I get a
Code:
"Sub1 was not found"
When running from BDEBUGGER without stepping through the code, same result.
Joe