From 2765496dbf97081a588ed9b7499945b88017bfb5 Mon Sep 17 00:00:00 2001 From: Alefh Sousa Date: Sun, 1 Oct 2017 16:09:34 -0300 Subject: [PATCH] create helloworld in c# --- helloworld.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 helloworld.cs diff --git a/helloworld.cs b/helloworld.cs new file mode 100644 index 0000000..f5debfa --- /dev/null +++ b/helloworld.cs @@ -0,0 +1,10 @@ +namespace HelloWorld +{ + class Hello + { + static void Main() + { + Console.WriteLine("Hello World!"); + } + } +}