using System; // Namespace, library of code
class Program // class, book of code.
{
static void Main() // method, chapter 1 of my application. Must be called Main()
Console.WriteLine("Michael James Cooper"); // instruction - class.method(arguement);
Console.WriteLine("41 Years young"); // debug a line by commenting it out
Console.WriteLine("Chicken and chips");
Console.WriteLine("Smashing 250m drives on the golf course");
}
} // C# is case sensitive
// syntax - the rules of the coding language