From bd3d2a1a9155c755fb367edfd8986dc350d3d7e8 Mon Sep 17 00:00:00 2001 From: Chaitanya Desai <71583721+itsmekrrish@users.noreply.github.com> Date: Fri, 2 Oct 2020 14:03:17 +0530 Subject: [PATCH] Create helloworld --- helloworld | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 helloworld diff --git a/helloworld b/helloworld new file mode 100644 index 0000000..bf37cec --- /dev/null +++ b/helloworld @@ -0,0 +1,12 @@ +using System; + +namespace HelloWorld +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}