AdventOfCode/Program.cs

9 lines
164 B
C#
Raw Normal View History

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