Rename helloworld.cpp to helloworld.java

This commit is contained in:
发霉的橄榄果
2020-05-25 06:56:23 +08:00
committed by GitHub
parent f7ab93fc78
commit bce853cb82

16
.github/helloworld.java vendored Normal file
View File

@ -0,0 +1,16 @@
// 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();
}
}
}