summary refs log tree commit diff
path: root/hello/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'hello/Program.cs')
-rw-r--r--hello/Program.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/hello/Program.cs b/hello/Program.cs
new file mode 100644
index 0000000..9cd008e
--- /dev/null
+++ b/hello/Program.cs
@@ -0,0 +1,8 @@
+namespace hello;

+class Program

+{

+    static void Main(string[] args)

+    {

+        Console.WriteLine("Hello, World!");

+    }

+}