Rename helloworld.js to helloworld.java

This commit is contained in:
发霉的烂厘子
2020-02-09 17:53:32 +08:00
committed by GitHub
parent cdbe36c391
commit e8abb05af2

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