Palindrome detection: Difference between revisions

(add Refal)
(One intermediate revision by the same user not shown)
Line 3,259:
 
=={{header|langur}}==
<syntaxhighlight lang="langur">val .ispal = fn(.s) { len(.s) > 0 and .s == reverse .s }
 
val .tests = h{
"": false,
"z": true,
990

edits