AdventOfCode2022/Kalender/Program.cs
2022-12-12 12:27:41 +01:00

18 lines
304 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)
{
day8_01.day8_part1();
Console.ReadKey();
}
}
}