GetCshape/HelloWorld/Program.cs

18 lines
322 B
C#
Raw Permalink Normal View History

2024-12-13 10:19:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
internal class Program
{
static void Main(string[] args)
{
2024-12-13 10:32:05 +08:00
Console.WriteLine("Hello World!");
2024-12-13 10:19:50 +08:00
Console.ReadKey();
}
}
}