Hello_World/test/Program.cs

13 lines
195 B
C#
Raw Normal View History

2021-07-17 19:39:52 +02:00
using System;
using System.Threading;
namespace test
{
class Program
{
static void Main(string[] args)
{
2021-07-17 19:44:13 +02:00
Console.WriteLine("Hello Git!");
2021-07-17 19:39:52 +02:00
}
}
}