> (Greater than)

(> atom1 atom2 [atom ...])

This function compares the given arguments. If each atom is greater than to the atom to its right, it returns T, otherwise nil.

Examples

: (> 1 2)

nil

: (> 3 2 1)

T

: (> 3 1 2)

nil

: (> "A" "B")

nil