From 55ceef87fb0e01d231430709b869b2d6d1a8f9eb Mon Sep 17 00:00:00 2001 From: Exercism's Solution Syncer Bot <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 13:39:22 +0000 Subject: [PATCH] [Sync Iteration] csharp/hello-world/1 --- solutions/csharp/hello-world/1/HelloWorld.cs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 solutions/csharp/hello-world/1/HelloWorld.cs diff --git a/solutions/csharp/hello-world/1/HelloWorld.cs b/solutions/csharp/hello-world/1/HelloWorld.cs new file mode 100644 index 0000000..5784ca4 --- /dev/null +++ b/solutions/csharp/hello-world/1/HelloWorld.cs @@ -0,0 +1,4 @@ +public static class HelloWorld +{ + public static string Hello() => "Hello, World!"; +}