RosettaCodeData/Task/Palindrome-detection/Falcon/palindrome-detection-2.falcon
2018-06-22 20:57:24 +00:00

5 lines
175 B
Text

/* created by Aykayayciti Earl Lamont Montgomery
April 9th, 2018 */
b = "mom"
> strUpper(b).replace(" ", "") == strUpper(b[-1:0]) ? "Is a palindrome" : "Is not a palindrome"