RosettaCodeData/Task/Test-a-function/Zkl/test-a-function-1.zkl
2017-09-25 22:28:19 +02:00

4 lines
79 B
Text

fcn pali(text){
if (text.len()<2) return(False);
text==text.reverse();
}