<=
Syntax number <= number
<= number number
.LE number number

 
Explanation The Less Than or Equal operator compares two numbers. If the first number is less than or equal to the second number, the output is TRUE; otherwise it is FALSE.

The <= operator may be used either as a prefix or as an infix operator, although it must be surrounded by parentheses if its output is used in infix mode (not simply at the command line).

Example 4 <= 5
Result: TRUE
.LE 5 5
Result: TRUE

TopIndex