The greater equal operator (>=) determines whether the value of the left operand is greater than or equal to the value of the right operand. This operator returns a boolean value.
Expression >= Expression
> PRINT 1 >= 2
FALSE
> PRINT 1 >= 1
TRUE
> PRINT TRUE >= FALSE
TRUE