From 0ee706fcf00e50946d1f786b6caaad876d747f01 Mon Sep 17 00:00:00 2001 From: Vivek Shah Date: Sun, 1 Oct 2017 19:50:58 +0530 Subject: [PATCH] Hello World in C# --- hello_world.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello_world.cs diff --git a/hello_world.cs b/hello_world.cs new file mode 100644 index 0000000..b3c517f --- /dev/null +++ b/hello_world.cs @@ -0,0 +1,8 @@ +using System; +class Program +{ + public static void Main(string[] args) + { + Console.WriteLine("Hello, world!"); + } +} \ No newline at end of file