advent24/Advent24/Program.cs

22 lines
434 B
C#

using System;
using System.Collections;
namespace Advent24
{
internal class Program
{
static void Main(string[] args)
{
//_ = new Day1();
//_ = new Day2();
//_ = new Day3();
//_ = new Day4();
//_ = new Day5();
//_ = new Day6();
//_ = new Day7();
//_ = new Day8();
_ = new Day9();
}
}
}