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

8 lines
157 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
Procedure IsPalindrome(StringToTest.s)
If StringToTest=ReverseString(StringToTest)
ProcedureReturn 1
Else
ProcedureReturn 0
EndIf
EndProcedure