2016-02-10 16:14:06 +00: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;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
|
|
namespace TestApp
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public static int Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(TestLibrary.Helper.GetMessage());
|
2016-02-11 23:55:37 +00:00
|
|
|
|
return 100;
|
2016-02-10 16:14:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|