summaryrefslogtreecommitdiff
path: root/tests/src/managed/Compilation/HelloWorld.cs
blob: 13a423ba9d39a6f3078dfde64a89b833cc725376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

using System;
class C
{
    static int Main()
    {
        Console.WriteLine("Hello " + "world");
        return 100;
    }
}