Returns T if each argument is numerically less than or equal to the argument to its right; otherwise returns nil
Supported Platforms: Windows and Mac OS
(<= numstr [numstr ...])
Type: Integer, Real, or String
A number or string.
Type: T or nil
T, if each argument is numerically less than or equal to the argument to its right; otherwise returns nil. If only one argument is supplied, T is returned.
(<= 10 20) T (<= "b" "b") T (<= 357 33.2) nil (<= 2 9 9) T (<= 2 9 4 5) nil