diff --git a/15/LensLibrary/Program.cs b/15/LensLibrary/Program.cs index 3751555..79221d8 100644 --- a/15/LensLibrary/Program.cs +++ b/15/LensLibrary/Program.cs @@ -1,2 +1,9 @@ -// See https://aka.ms/new-console-template for more information -Console.WriteLine("Hello, World!"); +namespace LensLibrary; + +public class Program +{ + public static async Task Main(string[] args) + { + return await Task.FromResult(0); + } +} \ No newline at end of file