Palindrome detection: Difference between revisions

m
No edit summary
Line 1,290:
</pre>
 
'''more falconic'''
<lang falcon>
/* created by Aykayayciti Earl Lamont Montgomery
April 9th, 2018 */
 
b = "mom"
> strUpper(b).replace(" ", "") == strUpper(b[-1:0]) ? "Is a palindrome" : "Is not a palindrome"
</lang>
{{out}}
<pre>
Is a palindrome
[Finished in 1.5s]
</pre>
 
=={{header|Fantom}}==