advent24/Advent24/Program.cs

15 lines
224 B
C#
Raw Normal View History

using System;
using System.Collections;
namespace Advent24
{
internal class Program
{
static void Main(string[] args)
{
2024-12-02 07:20:38 +00:00
//_ = new Day1();
_ = new Day2();
}
}
}