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!"); + } + } +}