Skip to content

Instantly share code, notes, and snippets.

@JTinkers
Created September 21, 2020 10:39
Show Gist options
  • Save JTinkers/5fd499347747b17bc0f4a3b4c4a4613a to your computer and use it in GitHub Desktop.
Save JTinkers/5fd499347747b17bc0f4a3b4c4a4613a to your computer and use it in GitHub Desktop.
using System;
namespace HelloWorld
{
class HelloWorld
{
static void Main(string[] args)
{
int nth = 1;
Console.WriteLine("Hello World, This is my" + nth + "C# program");
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment