using System; namespace HelloWorld { class Program { static void Main(string[] args) { var s = "Hello World!"; Console.WriteLine(s); } } }