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

13 lines
177 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
}
2017-01-11 13:18:44 -08:00
}