For the documentation of the functions >, <, >= and
<= see section Comparison Predicates.
t if the two integers number1 and
number2 have the same value.
(= 1 1)
=> t
(= 1 0)
=> nil
t if number1 and number2
and not equal to each other.
(/= 1 1)
=> nil
(/= 1 0)
=> t
t if number is equal to zero.
Go to the first, previous, next, last section, table of contents.