pub fn is_it(text: String) -> Bool
Perform a palindrome check. Accept a text and function returns a boolean value. True - if the text is a palindrome. False - if the text is not a palindrome.
> palindrome.is_it("racecar") # True