palindrome

Functions

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.

Example

> palindrome.is_it("racecar") # True
Search Document