我试着从n位置到m位置获取元素.但是我收到了一些错误.我该怎么办?
(defun element (list start end)
(dotimes (start end) (n-esimo list start)
))
(defun n-esimo (l n)
(cond ((equal n 0) (first l))
(t (n-esimo (rest l) (- n 1)))))
Run Code Online (Sandbox Code Playgroud)