summaryrefslogtreecommitdiffstats
path: root/third/Other.cs
diff options
context:
space:
mode:
authorBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 22:21:31 +0200
committerBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 22:21:31 +0200
commit3b05b33ff30b49ab0a3c4500d9d11c700bdc1a02 (patch)
treec60648fd5e6dcf8007e904839384e3de0a9c4020 /third/Other.cs
parent4470bda7f8f49bc8675889ef03ee4ef01f5a33cc (diff)
downloadcsharp-cmake-3b05b33ff30b49ab0a3c4500d9d11c700bdc1a02.tar.gz
csharp-cmake-3b05b33ff30b49ab0a3c4500d9d11c700bdc1a02.zip
Add Third project: two-file executable with globbing for *.cs via CONFIGURE_DEPENDS
Diffstat (limited to 'third/Other.cs')
-rw-r--r--third/Other.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/third/Other.cs b/third/Other.cs
new file mode 100644
index 0000000..fbad5b6
--- /dev/null
+++ b/third/Other.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace Third
+{
+ public static class Other
+ {
+ public static void Haiku()
+ {
+ Console.WriteLine("Bugs in the code");
+ Console.WriteLine("Winter compiles silently");
+ Console.WriteLine("Spring runs with no bugs");
+ }
+ }
+}