Is this Common Lisp code similar / equal to what they're teaching in LISP 3rd Edition by Winston / Horn?

后端 未结 0 1441
攒了一身酷
攒了一身酷 2021-01-17 08:01

They\'re saying that

(defun user-reverse (l)
    (if (endp l)
        nil
        (append (user-reverse (rest l))
                (list (first l)))))
<         


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