RosettaCodeData/Task/Test-a-function/Zkl/test-a-function-1.zkl
2023-07-01 13:44:08 -04:00

4 lines
79 B
Text

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