RosettaCodeData/Task/Palindrome-detection/PicoLisp/palindrome-detection.l
2023-07-01 13:44:08 -04:00

2 lines
59 B
Text

(de palindrome? (S)
(= (setq S (chop S)) (reverse S)) )