Compares if one expression is less than another expression.
Syntax
Notes
Expressions
|
Result
|
first expression < second expression |
True |
first expression > second expression |
False |
first expression = second expression |
False |
Example
if offset < length then
print( offset )
end
|