Rename helloworld.v to helloworld.cpp

This commit is contained in:
发霉的烂厘子
2020-04-24 09:38:39 +08:00
committed by GitHub
parent ba9203fa7d
commit e08b6633e3

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