|        | |||||
|  | |||||
| operator | is less-equal, <= | ||||
| Related Syntax | |||||
| Summary | Boolean The result is true if the first expression is equal to or less than the second, and false otherwise. Using  | 
expression1 (is less equal | <=) expression2
OmniMark operator meaning "is equal to or less than". Can be written as <=. is less-equal can be used on either string expressions or numeric expressions, but both expressions in the comparison must be of the same type.
isnt less-equal is equivalent to using is greater-than.
For example:
do when a <= b ... done
| Related Syntax is greater-than | 
| ---- |