RosettaCodeData/Task/Palindrome-detection/MAXScript/palindrome-detection-3.max

4 lines
157 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
local p = "ingirumimusnocteetconsumimurigni"
format ("'%' is a palindrome? %\n") p (isPalindrome p)
format ("'%' is a palindrome? %\n") p (isPalindrome_r p)