Search found 1 match
- Mon Apr 11, 2011 12:15 pm
- Forum: Common Lisp
- Topic: INPUT BUFFERED FILE-STREAM CHARACTER
- Replies: 2
- Views: 4547
INPUT BUFFERED FILE-STREAM CHARACTER
While writing a function involving dolist i received an error "should be a lambda expression" with the following code: (defun removeSortIterative(x l) (let ((result 0)) (dolist (e l result) (if (equals x e) (setq result (result)) (setq result ((append (list e) result))))))) I did some rese...