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

4 lines
157 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
local p = "ingirumimusnocteetconsumimurigni"
format ("'%' is a palindrome? %\n") p (isPalindrome p)
format ("'%' is a palindrome? %\n") p (isPalindrome_r p)