//HelloWorld //we will use this in the class today using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HelloWorld { class HelloWorld { static void Main(string[] args) { Console.Out.WriteLine("Hello World"); Console.In.ReadLine(); } } }