“Should be a lambda expression” error in Lisp program with easy algorithm

后端 未结 0 391
生来不讨喜
生来不讨喜 2020-12-21 05:59

I am trying to find the even maximums from a list in Lisp.

(defun m(L)
    (cond
        ((numberp L) L)
        ((atom L) most-negative-fixnum)
        (T (a         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题