about summary refs log blame commit diff
path: root/Program.cs
blob: a88bd9deb9a589a80a2fbbdbb1f36a9184545757 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                        
using System;
using System.IO;
using System.Linq;

namespace aoc2019
{
    class Program
    {
        static void Main(string[] args)
        {
            Day1.Part1();
            Day1.Part2();
        }
    }
}