0
I want to remove several elements from a list and return the list without these elements.
(defun removeAll (lista1 lista2)
 .
 .
 .
)
Entrada: > (removeAll '(a b c) '(a b c d))
Saída; > (d)
I’ve given it a lot of thought and I haven’t been successful.