1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/help/TROFF.txt
2017-10-10 11:55:21 -03:00

40 lines
945 B
Plaintext

''This page is maintained for historic purposes. The keyword is not supported in QB64.''
----
The {{KW|TROFF}} statement turns off line number tracing.
{{PageSyntax}}
:<code>{{KW|TROFF}}</code>
{{PageDescription}}
*'''[[Keywords currently not supported by QB64|Not supported in QB64.]]'''
* When line number tracing is on, the line numbers of statements are output immediately before they are executed.
* Use {{KW|TRON}} to turn on line number tracing.
* Line number tracing only has an effect when programs are compiled with debugging code (BC.EXE /D).
{{PageExamples}}
:Demonstrates simple line number tracing:
{{CodeStart}}1 {{Cl|TRON}}
2 {{Cl|FOR...NEXT|FOR}} n% = 1 {{Cl|TO}} 3
3 {{Cl|PRINT}} "inside loop"
4 {{Cl|FOR...NEXT|NEXT}} n%
5 {{Cl|TROFF}}
{{CodeEnd}}
{{OutputStart}}[2][3]inside loop
[4][3]inside loop
[4][3]inside loop
[4][5]
{{OutputEnd}}
{{PageSeeAlso}}
* {{KW|TRON}}
{{PageNavigation}}