#BackCoding
simple “Hello World!” program in C#. This will get you familiar with the basic syntax and requirements of a C# programs
The “Hello World!” program is often the first program we see when we dive into a new language. It simply prints Hello World! on the output screen.
The purpose of this program is to get us familiar with the basic syntax and requirements of a programming language.
#CS
#programming
#dcoder
#shorts
using System;
namespace BasicProgram{
class FirstProgram{
public static void Main(string[] args){
Console.WriteLine("Hello World");
}
}
}