README

Is it a palindrome

Write function isPalindrome that checks if a given string (case insensitive) is a palindrome.

In Racket, the function is called palindrome?

(palindrome? “nope”) ; returns #f

(palindrome? “Yay”) ; returns #t

Source