(> ..args)
  args: two or more nums or chars
  returns a bool
F

Numeric greater-than test.

Returns #t if each successive pair of arguments tests numerically greater-than. These two forms are equivalent:

(> a b c d)
(and (> a b) (> b c) (> c d))
<=
>=