Files
hamulete/.github/helloworld.cpp
2019-10-14 18:49:03 +08:00

17 lines
343 B
C++

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