Operator label
The label can be placed before any operator, which makes it possible to go to this operator with the help of the "goto" operator.
A label consists of an identifier followed by the colon (:). The definition domain of the label is the specified function.
Example:
next: x = 3;
|