TROFF
From QB64 Wiki
The TROFF statement turns off line number tracing.
TROFF
Description:
- Currently NOT supported in QB64!
- When line number tracing is on, the line numbers of statements are output immediately before they are executed.
- Use TRON to turn on line number tracing.
- Line number tracing only has an effect when programs are compiled with debugging code (BC.EXE /D).
Code Examples:
- Demonstrates simple line number tracing:
1 TRON 2 FOR n% = 1 TO 3 3 PRINT "inside loop" 4 NEXT n% 5 TROFF
[2][3]inside loop [4][3]inside loop [4][3]inside loop [4][5]
See also: