Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

}

...