Compares if one expression does not equal another expression.
Syntax
Notes
Expressions
|
Result
|
first expression < second expression |
True |
first expression > second expression |
True |
first expression = second expression |
False |
Example
if count <> 0 then
count = count - 1
end
|