The
(/= 1 1) => NIL (/= 1 2) => T (/= 1 1.0) => NIL (/= 1 2 3) => T (/= 1 2 2) => NIL (/= "a" "b") => error: bad argument type (setq a 1 b 12.4) => 12.4 ; set up A and B with values (/= a b) => NIL
See setq.
XLISP Bug
(/= 1 2 3) => T ; OK (/= 1 2 3 2 1) => T ; wrong
This is only a problem for the '/=' function.
See also: