Skip to content

Instantly share code, notes, and snippets.

@YannMjl
Last active June 22, 2025 08:04
Show Gist options
  • Save YannMjl/80d980a86f30f68ea2b9d72fd2cdbbaf to your computer and use it in GitHub Desktop.
Save YannMjl/80d980a86f30f68ea2b9d72fd2cdbbaf to your computer and use it in GitHub Desktop.
HelloWorld program in C#
using System;
namespace HelloWorld
{
class helloWorld
{
static void Main(string[] args)
{
Console.WriteLine("Hello World, This is my first C# program");
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment