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

10 lines
134 B
C#
Raw Normal View History

2015-11-17 11:40:07 -08:00
using System;
public 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
}
}