16 lines
327 B
C#
16 lines
327 B
C#
//cc:main function
|
|
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();
|
|
}
|
|
}
|
|
} |