Common Lisp lambda expression error
问题 I am trying to make a program, which will rewrite given row without duplicates in an output row. I am using this website as a compiler: https://www.tutorialspoint.com/execute_lisp_online.php And here is my code (SETQ X (LIST 2 -3 (LIST 4 3 0 2) (LIST 4 -4) (LIST 2 (LIST 2 0 2))-3))' (DEFUN SEARCHDEEP (WHAT WHERE) ;Function will find out if atom `WHAT`is in a row `WHERE` => works fine (COND ((NULL WHERE) NIL) (T (OR (COND ((ATOM (CAR WHERE)) (EQUAL WHAT (CAR WHERE))) (T (SEARCHDEEP WHAT (CAR