using System;
internal class Program
{
static void Main()
// This line of code prints the text which is in the quotation marks.
// The first part is calling the static class Console and asks it to
// run the WriteLine function. We pass in the string (text) to print.
Console.WriteLine("Hello, World!");
}