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!"); + } +}