BEE Lisp Functions Reference

<number> MORE (A B)

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

Example:

(MORE 3 2)                              ; 1

(MORE ‘(a b c e) ‘(a c b))          ; 1

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