about summary refs log tree commit diff
path: root/Program.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2019-12-01 02:35:17 -0500
committerBen Harris <ben@tilde.team>2019-12-01 02:35:17 -0500
commit72123d091331c572799611b379772f025fb838e3 (patch)
treeb0b61e8242879f01cf98af78c4887f112860ce60 /Program.cs
day1 init
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..a88bd9d
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,15 @@
+using System;

+using System.IO;

+using System.Linq;

+

+namespace aoc2019

+{

+    class Program

+    {

+        static void Main(string[] args)

+        {

+            Day1.Part1();

+            Day1.Part2();

+        }

+    }

+}