From 25fe4e36c1636fe1f72eec560fbcccd3a3c81907 Mon Sep 17 00:00:00 2001 From: Naman0929 <73557249+Naman0929@users.noreply.github.com> Date: Wed, 28 Oct 2020 02:11:42 +0530 Subject: [PATCH] HelloWorld.CS wrote a code to print hello world in C# --- HelloWorld.CS | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 HelloWorld.CS diff --git a/HelloWorld.CS b/HelloWorld.CS new file mode 100644 index 0000000..8d50d83 --- /dev/null +++ b/HelloWorld.CS @@ -0,0 +1,8 @@ +using System; +class Program +{ + public static void Main(string[] args) + { + Console.WriteLine("Hello world"); + } +}