Search

An introduction to coding and programming - Hello hello

//#######                                        #####                              
//#       #    # #####  #      #  ####  # ##### #     #  ####  #####  ###### #####  
//#        #  #  #    # #      # #    # #   #   #       #    # #    # #      #    # 
//#####     ##   #    # #      # #      #   #   #       #    # #    # #####  #    # 
//#         ##   #####  #      # #      #   #   #       #    # #    # #      #####  
//#        #  #  #      #      # #    # #   #   #     # #    # #    # #      #   #  
//####### #    # #      ###### #  ####  #   #    #####   ####  #####  ###### #    # 

//***********************************************************************************************************************************
// Project      : Hello hello
// Solution     : Entry level coding
// Project type : Console application
// Platform     : Microsoft.NET 6.00
// Created with : Microsoft Visual Studio Community 2022 (64-bit) Version 17.0.6
// Created      : 03/10/2022
// Created By   : https://explicitcoder.com
//***********************************************************************************************************************************
// Instructions
// Select this project (Hello hello) from the dropdown box next to the green arrow
// at the top of Visual studio and then click the green play button to start it.
// To stop the program you can either click the close button on the console window or click the red stop button.
//***********************************************************************************************************************************
// Description
// This is the simplest C# program and a good starting point when learning any new programming language.
// Text will be written to the console window.
//***********************************************************************************************************************************

//***********************************************************************************************************************************
// SEE THE WEBSITE FOR MORE INFORMATION    https://explicitcoder.com/getting-started
//***********************************************************************************************************************************

namespace Hello_hello
{
    class Program
    {
        static void Main() // The program starts here. Main is the first method called when you run the program.
        {
            // Write some text to the console window.
            Console.WriteLine("Hello hello");

            // Write some more text to the console window.
            Console.WriteLine("Hello hello this is my first program");

            // Without this line the program will end before you have time to see it.
            Console.ReadLine();
        }
    }
}