mirror of
https://github.com/ckaczor/Advent2019.git
synced 2026-01-14 01:25:36 -05:00
15 lines
273 B
C#
15 lines
273 B
C#
namespace Advent
|
|
{
|
|
internal static class Program
|
|
{
|
|
private static void Main()
|
|
{
|
|
//Day1.Execute();
|
|
//Day2.Execute();
|
|
//Day3.Execute();
|
|
//Day4.Execute();
|
|
Day5.Execute();
|
|
}
|
|
}
|
|
}
|