Lesson 1: Console.WriteLine() — Show text on screen
The first step in any programming language is showing something. In C# the command Console.WriteLine() displays text on the screen and moves to a new line. Two conventions ride along from line one: text is written in double quotes "like this", and every command ends with a semicolon ;.