RosettaCodeData/Task/Palindrome-detection/Sidef/palindrome-detection-2.sidef
2023-07-01 13:44:08 -04:00

3 lines
42 B
Text

func palindrome(s) {
s == s.reverse
}