From 23ff54d171981ddca1a73d11edb36edc0fcf2d2d Mon Sep 17 00:00:00 2001 From: hoodiearon Date: Sat, 8 Jun 2019 19:37:38 +0800 Subject: [PATCH] Delete helloworld.cs --- Test/helloworld.cs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Test/helloworld.cs diff --git a/Test/helloworld.cs b/Test/helloworld.cs deleted file mode 100644 index 0a720dc..0000000 --- a/Test/helloworld.cs +++ /dev/null @@ -1,16 +0,0 @@ -// A Hello World! program in C#. -using System; -namespace HelloWorld -{ - class Hello - { - static void Main() - { - Console.WriteLine("Hello World"); - - // Keep the console window open in debug mode. - Console.WriteLine("Press any key to exit."); - Console.ReadKey(); - } - } -}