using System; using Coverlet.Integration.Template; namespace HelloWorld { class Program { static void Main(string[] args) { DeepThought dt = new DeepThought(); dt.AnswerToTheUltimateQuestionOfLifeTheUniverseAndEverything(); Console.WriteLine("Hello World!"); } } }