>=
Greater-than-or-equal test
>= is a macro, and (>= x y) expands to the same thing as
(not (< x y)). See <.
>= is a Common Lisp function. See any Common Lisp documentation for
more information.
Macro: >=
(defmacro >= (x y)
(list 'not (list '< x y)))