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