/* Description: Create an extension method that given a string as a parameter, returns true or false if the string is Palindrome or not
and display the result.
Example:
Is Level a palindrome? true.
Is Soccer a palindrome? false.
Is 'string.Empty' palindrome? false.
Is 'null' palindrome? false.
*/
using System;
public static class Program
{
public static void Main()
Console.WriteLine($"Hello luxsoft");
}