From b87279a383391bff2959ee390e5df96b430caf99 Mon Sep 17 00:00:00 2001 From: lionarius Date: Thu, 7 Mar 2024 21:46:17 +0300 Subject: [PATCH] Move Program.cs and convert to Program.main --- Program.cs | 2 -- src/Program.cs | 7 +++++++ 2 files changed, 7 insertions(+), 2 deletions(-) delete mode 100644 Program.cs create mode 100644 src/Program.cs diff --git a/Program.cs b/Program.cs deleted file mode 100644 index 3751555..0000000 --- a/Program.cs +++ /dev/null @@ -1,2 +0,0 @@ -// See https://aka.ms/new-console-template for more information -Console.WriteLine("Hello, World!"); diff --git a/src/Program.cs b/src/Program.cs new file mode 100644 index 0000000..09dcae9 --- /dev/null +++ b/src/Program.cs @@ -0,0 +1,7 @@ +internal class Program +{ + private static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } +} \ No newline at end of file