Compares if one expression is less than or equals another expression.
Syntax
Notes
Expressions
|
Result
|
first expression < second expression |
True |
first expression > second expression |
False |
first expression = second expression |
True |
Example
!if WORDSIZE <= 16
!error 8/16 bit systems are not supported
!endif
|