up previous next
Comparison Operators

less than, greater than, ...

Syntax
A < B
A > B
A <= B
A >= B
  return BOOL

Description
These operators perform the corresponding comparison between A and B returning true or false ; they will signal an error if A and B are not comparable.

Example
/**/ "abc" < "def"; -- lex ordering for strings
true

See Also