// Anything AFTER two forward slashes is a comment. Try writing your own comments. When the text turns green, you know it's a comment.
/* Alternatively, anything between these symbols (one forward slash and an asterix, followed by an asterix and then another forward slash) is ALSO a comment */
using System; // This declares the program is allowed to access commands from inside the "System" library. Almost all programs will use this library.
public class Program // This line declares a class. More on this later.
{
public static void Main() // This is the Main function. All C# programs SOMEWHERE need a function called "Main", or else the compiler wouldn't have any idea where to begin.
string outputSHITFUCKass = "hey"; // A string with "hey" in it.
Console.WriteLine(outputSHITFUCKass); // Write that string to the console.
}