Reputation: 653
I am comparing the first value of two lists, with two outcomes, they are either equal or unequal. My first IF statement is:
(if (eq (car L1) (car L2)))
Is there an opposite of 'eq' that can I use?
Like...
(if (not eq (car L1) (car L2)))
Any help would be much appreciated!
Upvotes: 1
Views: 479