|
|
|
Online Scripting Reference
|
|
isLesserEqual
|
Purpose
|
Compares two values to see if the first is less than or equal to the second.
|
|
Syntax
|
isLesserEqual var {value1} {value2}
var: A variable to hold the result of the comparison.
{value1}: A value to compare.
{value2}: A value to be compared with "value1".
{value2}:
|
|
Notes
|
"var" will be set to TRUE (1) if the first value is less than or equal to the second, or FALSE (0) if it is not.
This command is used internally by the compiler. Its use is not recommended, use the "IF" macro instead.
|
|
Example
|
|
Return to item listing |
|
|