dotnet-core/samples/helloworld/Program.cs
2019-03-05 08:14:06 -08:00

13 lines
191 B
C#

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