From d70d1c8bce16f3a75dce2f3594a1695a91830341 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Tue, 5 Dec 2023 16:17:38 -0600 Subject: [PATCH] chore: stub out program.cs --- 05/IYGASAF/Program.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/05/IYGASAF/Program.cs b/05/IYGASAF/Program.cs index 3751555..ebf228a 100644 --- a/05/IYGASAF/Program.cs +++ b/05/IYGASAF/Program.cs @@ -1,2 +1,9 @@ -// See https://aka.ms/new-console-template for more information -Console.WriteLine("Hello, World!"); +namespace IYGASAF; + +public class Program +{ + public static async Task Main(string[] args) + { + return await Task.FromResult(0); + } +} \ No newline at end of file