Purpose
"Less than" compares the values of two expressions of the same or similar types.
If the first expression is less than the second, TRUE is returned; otherwise, FALSE is returned.
Syntax
Expression1 < Expression2
Example
If num < 5 Then
Print "The value of 'num' is less than 5"
|