Skip to content

Instantly share code, notes, and snippets.

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