...
The index name must not be duplicated with variables, tags, or program names.
VAR A;
A = 0; @ComeHere // Assign an index. If (A < 10) { A = A + 1 Goto ComeHere; // Move to the assigned index. } |
...
...
The index name must not be duplicated with variables, tags, or program names.
VAR A;
A = 0; @ComeHere // Assign an index. If (A < 10) { A = A + 1 Goto ComeHere; // Move to the assigned index. } |
...