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