Less

Name

Less -- Determines whether a value is less than another

Synopsis

Less[x->NUMBER, y->NUMBER] =: BOOLEAN 
Less[x->TEXT, y->TEXT] =: BOOLEAN

Description

Less returns True when x is strictly less than y. For TEXT values, the ordering of the machine's character set is used.

Short form

x < y

See also

Greater, GreaterEqual, LessEqual.