RosettaCodeData/Task/Palindrome-detection/PureBasic/palindrome-detection.basic

8 lines
157 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Procedure IsPalindrome(StringToTest.s)
If StringToTest=ReverseString(StringToTest)
ProcedureReturn 1
Else
ProcedureReturn 0
EndIf
EndProcedure