2017-03-02 21:04:03 -08:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
using System;
|
2015-12-14 17:39:29 -08:00
|
|
|
|
|
|
|
|
|
namespace ConsoleApplication
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public static int Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Hello World!");
|
2016-09-08 14:40:46 -07:00
|
|
|
|
return 0;
|
2015-12-14 17:39:29 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|