diff options
| author | Bernhard Guillon <Bernhard.Guillon@begu.org> | 2026-06-30 20:31:21 +0200 |
|---|---|---|
| committer | Bernhard Guillon <Bernhard.Guillon@begu.org> | 2026-06-30 20:31:21 +0200 |
| commit | 2c74c8a08becb4cc12f3b7b280e46e9816a5dc21 (patch) | |
| tree | b9745e3d838a04e52b6b245afb7b2f580ef8e74f /hello/Program.cs | |
| parent | ceaf6ef05eb50b84c5de159a71e5869e2ac38f85 (diff) | |
| download | csharp-cmake-2c74c8a08becb4cc12f3b7b280e46e9816a5dc21.tar.gz csharp-cmake-2c74c8a08becb4cc12f3b7b280e46e9816a5dc21.zip | |
Reorganize into hello/ and foobar/ subdirectories
Diffstat (limited to 'hello/Program.cs')
| -rw-r--r-- | hello/Program.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hello/Program.cs b/hello/Program.cs new file mode 100644 index 0000000..33e286c --- /dev/null +++ b/hello/Program.cs @@ -0,0 +1,10 @@ +using System; + +class Program +{ + static void Main() + { + Console.WriteLine("Hello, CMake + C#!"); + FooBar.Print(); + } +} |
