>= (greater than or equal to) (AutoLISP)

Returns T if each argument is numerically greater than or equal to the argument to its right; otherwise returns nil

(>= numstr [numstr] ...)

Arguments

numstr

A number or a string.

Return Values

T, if each argument is numerically greater than or equal to the argument to its right; otherwise nil. If only one argument is supplied, >= returns T.

Examples

(>= 120 17)                returns  T 
(>= "c" "C")               returns  T 
(>= 3.5 1792)              returns  nil 
(>= 77 4 2)                returns  T 
(>= 77 4 9)                returns  nil