Initial commit

This commit is contained in:
2019-12-02 20:58:03 -05:00
parent ab5cefdf3f
commit 127a57221a
7 changed files with 156 additions and 1 deletions

10
Program.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace Advent
{
internal static class Program
{
private static void Main()
{
Day2.Execute();
}
}
}