From 87d474ee2c98c7992151423911dbe62221c2bd05 Mon Sep 17 00:00:00 2001 From: Robert Palmer Date: Wed, 25 Oct 2023 12:53:55 -0400 Subject: [PATCH] added to first_working_branch --- hello_world_rjpalmer.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello_world_rjpalmer.cs diff --git a/hello_world_rjpalmer.cs b/hello_world_rjpalmer.cs new file mode 100644 index 0000000..02ca3d6 --- /dev/null +++ b/hello_world_rjpalmer.cs @@ -0,0 +1,9 @@ +using System; + +class Program +{ + static void Main() + { + Console.WriteLine("Hello, World!"); + } +}