From 09df94b493a6f4982dbe9ee29e4131b52dac706e Mon Sep 17 00:00:00 2001 From: Jatin Bhakta Date: Thu, 24 Oct 2019 22:22:53 -0400 Subject: [PATCH] Create Program.cs --- Program.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Program.cs diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..ee16934 --- /dev/null +++ b/Program.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConsoleApp1 +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello, world!"); + Console.ReadLine(); + } + } +}