using System; namespace HelloWorldApp { class Program { static int Main(string[] args) { Console.WriteLine("Hello, world!"); return 1; } } }