4 lines
79 B
Text
4 lines
79 B
Text
fcn pali(text){
|
|
if (text.len()<2) return(False);
|
|
text==text.reverse();
|
|
}
|