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