basic/doc/statements/tron.rs
1/*!
2# `TRON | TROFF`
3
4## Purpose
5Enable and disable trace printing.
6
7## Remarks
8When tracing is on, the executing line number will be printed
9as the program is running.
10
11## Example
12```text
1310 FOR I = 1 TO 3
1420 TROFF:IF I = 2 THEN TRON
1530 PRINT I
1640 NEXT I
17RUN
18 1
19[30] 2
20[40][20] 3
21```
22
23*/