Comparison operator performing a Greater Than Or Equal To function.
The GE operator is a boolean operator which returns the value TRUE when the value of the first operand is greater than or equal to that of the second.
The operands can be of any basic data type.
Result is TRUE
LD 60
GE 40
ST Var1
VAR1 := 60 >= 40;