dotnet-installer/src/dotnet/commands/dotnet-new/CSharp_Console/Program.cs

10 lines
127 B
C#
Raw Normal View History

2015-11-17 11:40:07 -08:00
using System;
2016-07-22 12:11:01 -07:00
class Program
2015-11-17 11:40:07 -08:00
{
static void Main(string[] args)
2015-11-17 11:40:07 -08:00
{
Console.WriteLine("Hello World!");
2015-11-17 11:40:07 -08:00
}
}