From 394b848412e8a5562975d86bfd7598041461a4a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miskolczi=20Rich=C3=A1rd?= Date: Sat, 15 Apr 2023 19:04:05 +0200 Subject: [PATCH] Adding Main to CLI --- CLI/Program.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/CLI/Program.cs b/CLI/Program.cs index 3751555..21e2cb5 100644 --- a/CLI/Program.cs +++ b/CLI/Program.cs @@ -1,2 +1,9 @@ -// See https://aka.ms/new-console-template for more information -Console.WriteLine("Hello, World!"); +namespace CLI; + +class Program +{ + static void Main(string[] args) + { + + } +}