1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 08:35:52 +00:00
QB64-PE/internal/help/TRON.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

34 lines
878 B
Plaintext

The {{KW|TRON}} statement turns on line number tracing.
{{PageSyntax}}
:&lt;code&gt;{{KW|TRON}}&lt;/code&gt;
{{PageDescription}}
*'''[[Keywords currently not supported by QB64|Currently NOT supported in QB64!]]'''
* When line number tracing is on, the line numbers of statements are output immediately before they are executed.
* Use {{KW|TROFF}} to turn off line number tracing.
* Line number tracing only has an effect when programs are compiled with debugging code (&lt;tt&gt;BC.EXE /D&lt;/tt&gt;).
{{PageExamples}}
:Demonstrates simple line number tracing:
{{CodeStart}}1 {{Cl|TRON}}
2 {{Cl|FOR...NEXT|FOR}} n% = 1 {{Cl|TO}} 3
3 {{Cl|PRINT}} &quot;inside loop&quot;
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|TROFF}}
{{PageNavigation}}