RosettaCodeData/Task/Palindrome-detection/Sidef/palindrome-detection-2.sidef
2016-12-05 23:44:36 +01:00

3 lines
42 B
Text

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