Comparison operator performing a Less Than function.
The LT operator is a boolean operator which returns the value TRUE when the value of the first operand is less than that of the second.
The operands can be of any basic data type.
Result is TRUE
LD 20
LT 30
ST Var1
VAR1 := 20 < 30;