LISP Palindrome Function

(defun ispalindrome (list)
       (equal list (reverse list))
)

> (ispalindrome '(a b b a)) = T

Comments