diff --git a/helloworld b/helloworld new file mode 100644 index 0000000..bf37cec --- /dev/null +++ b/helloworld @@ -0,0 +1,12 @@ +using System; + +namespace HelloWorld +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}