From 1cca7e7fcf70c2a6ded4026fe92c47ac548c650b Mon Sep 17 00:00:00 2001 From: noemi3 Date: Fri, 1 Oct 2021 13:00:04 +0200 Subject: [PATCH] add hello word in c# --- c#.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 c#.cs diff --git a/c#.cs b/c#.cs new file mode 100644 index 0000000..a5e0da3 --- /dev/null +++ b/c#.cs @@ -0,0 +1,8 @@ +//Hello World in C# +class HelloWorld +{ + static void Main() + { + System.Console.WriteLine("Hello, World!"); + } +}