add: hello world

This commit is contained in:
2025-03-26 01:00:46 +08:00
parent 11f793d6f3
commit 391ffe177d
+13
View File
@@ -0,0 +1,13 @@
using System;
namespace HelloWorld
{
class Main
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}