summaryrefslogtreecommitdiffstats
path: root/hello/Program.cs
blob: 33e286c732a81b06b26591a959cf006aab81dfa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("Hello, CMake + C#!");
        FooBar.Print();
    }
}