Ad
Code
Diff
  • using System;
    
    class Kata
    {
      public static void Main()
      {
        Console.WriteLine("Hello, C#!");
        
      }
    }
    • using System;
    • class Kata
    • {
    • private static string LANGUAGE = "C#";
    • public static void Main()
    • {
    • string[] hello = {"H","e","l","l","o"};
    • var result = String.Join("", hello);
    • Console.WriteLine($"{result}, {LANGUAGE}!");
    • Console.WriteLine("Hello, C#!");
    • }
    • }