6 lines
90 B
Common Lisp
6 lines
90 B
Common Lisp
(defun my-last (lst)
|
|
(last lst))
|
|
|
|
;; C-c C-k
|
|
(assert (equal (my-last '(a b c d)) '(D)))
|