dotnet-core/samples/helloworld/Program.cs

12 lines
157 B
C#
Raw Normal View History

2015-11-18 16:48:20 +01:00
using System;
namespace HelloWorldSample
{
public static class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
}
}
}