AdventOfCode2022/Kalender/Program.cs
2022-12-09 16:30:14 +01:00

20 lines
330 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)
{
day9_part1.day9_01();
Console.ReadKey();
}
}
}