xah talk show 2022-05-07 look into emacs lisp string functions

xah talk show 2022-05-07 look into emacs lisp string functions
(last '(1 2 3))
;; (cons 3 nil)

(equal
(last '(1 2 3))
(cons 3 nil)
)
;; t

(equal 3
       (car (last '(1 2 3))))
;; t