Syntax
Value1 < Value2
Description
Strict less-than-inequality test.
Returns 1 if the left side of the inequality is less than the right side, and 0 otherwise.
Note that more than two objects can be compared.
Example
6 < 8 < 11 returns 1 (because it is true)
6 < 8 < 3 returns 0 (as it is false)
< — Discussion