>  Operator


(>  argument  [ argument ... ]] )

This function compares each argument to be greater than the next right argument.

Arguments

argument  any Lisp symbol (number, string, ...)

Return

T if any left-side argument is greater than the next right argument; NIL if any argument is not greater than its next right argument

Example

(> 10 10.5)  NIL
(> 10 11)  NIL
(> "c" "d")  NIL
(> "d" "c")  T
(> 12.3 12)  T

Remarks

to compare ENAME symbols, use (equal) function



©  Bricsys NV. All rights reserved.