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

13 lines
202 B
C#
Raw Normal View History

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