AdventOfCode2022/Kalender/Program.cs
2022-12-11 13:27:55 +01:00

20 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kalender
{
internal class Program
{
static void Main(string[] args)
{
day11.part1();
Console.ReadKey();
}
}
}