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

12 lines
176 B
C#
Raw Normal View History

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