AdventOfCode/Program.cs

10 lines
165 B
C#
Raw Permalink Normal View History

using AdventOfCode.Year2023;
2023-06-08 11:47:26 +00:00
namespace AdventOfCode;
internal static class Program
{
public static void Main(string[] args)
=> Loader2023.Load();
}