-- Exercise 5.7 -- George C. Privon -- 2024-07-20 palindrome :: String -> Bool palindrome word = if word == reverse word then True else False