//C#/Tutorials/HelloWorld.cs //Matthew Ellison // Created: 07-29-20 //Modified: 07-29-20 //This is a simple hello world program using System; namespace mee{ public class HelloWorld{ static void Main(string[] args){ Console.WriteLine("Hello World"); string testString = "World"; Console.WriteLine($"Hello {testString} 2"); } } }