BEE Lisp Functions Reference

<number> LESS (A B)

Compares values of objects A and B, and returns true if A is less than B, and false – otherwise. Strings ARE NOT compared (always returns false)

Example:

(LESS 2 3)                               ; 1

(LESS ‘(a b) ‘(a c b))                 ; 1

(<  ‘(a b c) ‘(a b c))                    ; 0, alternative way