Sujet : Re: Strange issue with packages
De : Nobody447095 (at) *nospam* here-nor-there.org (B. Pym)
Groupes : comp.lang.lispDate : 22. Aug 2024, 09:40:09
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <va6th9$cg1f$1@dont-email.me>
User-Agent : XanaNews/1.18.1.6
Pascal Costanza wrote:
(defun count (element list)
(loop for x in list
count (eql x element)))
newLISP
(count '(c) '(b c d f c g h c))
===>
(3)