summaryrefslogtreecommitdiffstats
path: root/FooBar.cs
diff options
context:
space:
mode:
authorBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 20:29:11 +0200
committerBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 20:29:11 +0200
commitceaf6ef05eb50b84c5de159a71e5869e2ac38f85 (patch)
treedd72cc6240825eb5e39dc4b0ac2cc58867f3ecc9 /FooBar.cs
parent5ec50e41ea76d26bac1686672a8cff2248465f98 (diff)
downloadcsharp-cmake-ceaf6ef05eb50b84c5de159a71e5869e2ac38f85.tar.gz
csharp-cmake-ceaf6ef05eb50b84c5de159a71e5869e2ac38f85.zip
Add FooBar library with CMake build integration
Diffstat (limited to 'FooBar.cs')
-rw-r--r--FooBar.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/FooBar.cs b/FooBar.cs
new file mode 100644
index 0000000..1ccbe3b
--- /dev/null
+++ b/FooBar.cs
@@ -0,0 +1,10 @@
+using System;
+
+public class FooBar
+{
+ public static void Print()
+ {
+ Console.WriteLine("FooBar");
+ Console.WriteLine("FooBar");
+ }
+}