Home > Expression Operators > Miscellaneous Operators > Statement separator

Statement separator

& (statement separator)

Separates statements in an expression.

Syntax:

statement1 & statement2

Example:

T:=A+B+C & U:=T/(T+1) & U*D contains three statements. The overall result of this expression is the result of the last statement (U*D).

Related Operators:

:= (assignment)