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). The three statements could be written as:
T:=A+B+C &
U:=T/(T+1) &
U*D
Related Operators: