Creating Output With your console program

    Output is what is displayed when the program is interacted with. At the most basic level, this includes answers to math problems entered into the program. Right now we will be dealing with text and numbers being displayed. With your newly created console program, Under static void Main(string[] args), between the {} brackets enter Console.WriteLine("your name here!"); Under that, enter Console.ReadLine();

Run the program and your name will appear! You have just created output. To learn how to create and initalize variables click here