Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
2 people like it. Like the snippet!
Check string of palindroms
1: 2: 3:
let IsPalindrom (str:string)= let rec fn(a,b)=a>b||str.[a]=str.[b]&&fn(a+1,a-1) fn(0,str.Length-1)