Delete helloworld.java

This commit is contained in:
发霉的橄榄果
2020-06-12 13:34:25 +08:00
committed by GitHub
parent e15418063c
commit 0208f0067b

View File

@ -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();
}
}
}