dotnet-core/samples/helloworld/Program.cs
2015-11-18 07:48:20 -08:00

12 lines
157 B
C#

using System;
namespace HelloWorldSample
{
public static class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
}
}
}