dotnet-core/samples/helloworld/Program.cs

13 lines
191 B
C#
Raw Normal View History

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