dotnet
Some checks failed
First CI / test (push) Failing after 4s
First CI / build (push) Successful in 1m23s

This commit is contained in:
Anastasiia 2024-11-22 13:51:02 +01:00
parent 8f78241721
commit 994e8a21ce

View File

@ -1,2 +1,9 @@
// See https://aka.ms/new-console-template for more information using System;
Console.WriteLine("Hello, World!");
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}