Hello_World/test/Program.cs

13 lines
197 B
C#

using System;
using System.Threading;
namespace test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}