From 391ffe177d87138c28282568552f10b1c0d50f00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=A1=E5=9D=82=E6=98=B4?= Date: Wed, 26 Mar 2025 01:00:46 +0800 Subject: [PATCH] add: hello world --- C#/1. hello world/main.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 C#/1. hello world/main.cs diff --git a/C#/1. hello world/main.cs b/C#/1. hello world/main.cs new file mode 100644 index 0000000..35ecd69 --- /dev/null +++ b/C#/1. hello world/main.cs @@ -0,0 +1,13 @@ +using System; + +namespace HelloWorld +{ + class Main + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + Console.ReadKey(); + } + } +} \ No newline at end of file