The greater operator (>) determines whether the value of the left operand is greater than the value of the right operand, and if it is greater, it returns TRUE.
Expression > Expression
> PRINT 1 > 2
FALSE
> PRINT 1 > 1
FALSE
> PRINT TRUE > FALSE
TRUE