using System; using System.Linq; public class Test { public static void Main() { Console.WriteLine("Hello world 🙂!"); Console.WriteLine(new string("Hello world 🙂!".Reverse().ToArray())); } }