Search found 2 matches
- Tue Jun 14, 2011 2:54 pm
- Forum: Common Lisp
- Topic: muLISP to CLISP
- Replies: 3
- Views: 4910
Re: muLISP to CLISP
**Updated code** Ive got a successful load running "(isMemb? '(a (b g) c) '(n h (b g)) );", though now an error comes up "*** - MEMBER: keyword arguments in (EQUAL) should occur pairwise" Maybe something is incorrect with the equal in my code, help is appreciated. thank you. (def...
- Tue Jun 14, 2011 2:06 pm
- Forum: Common Lisp
- Topic: muLISP to CLISP
- Replies: 3
- Views: 4910
muLISP to CLISP
program written in muLisp trying to conver to clisp. everything seems to be correct maybe someone can guide me in the right way regarding this function. thanks in advance. (defun isMemb? (lList1 lList2) (cond ((null lList1) nil); ;(or (car (member (car lLista1) lLista2 'equal)) (isMemb? (cdr lList1)...