Skip to content

Instantly share code, notes, and snippets.

@JTinkers
Created September 21, 2020 10:32
Show Gist options
  • Save JTinkers/760b11c33684882a4b473e209f93c4c7 to your computer and use it in GitHub Desktop.
Save JTinkers/760b11c33684882a4b473e209f93c4c7 to your computer and use it in GitHub Desktop.
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