Rename helloworld.cs to helloworld.rb

This commit is contained in:
某搬砖的(*^_^*)
2019-10-06 08:18:07 +08:00
committed by GitHub
parent a1c9107b09
commit 2f6b5f0360

16
.github/helloworld.rb 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();
}
}
}