1
0

Move Program.cs and convert to Program.main

This commit is contained in:
2024-03-07 21:46:17 +03:00
parent b3a7d86590
commit b87279a383
2 changed files with 7 additions and 2 deletions

View File

@@ -1,2 +0,0 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

7
src/Program.cs Normal file
View File

@@ -0,0 +1,7 @@
internal class Program
{
private static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}