adventofcode/2020/DayTemplate.cs

25 lines
347 B
C#

using System;
using static System.Console;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Xunit;
namespace AdventOfCode {
public class DayXX {
static void Part1() {
}
static void Part2() {
}
[Fact(Skip = "template")]
public static void Test() {
Part1();
Part2();
}
}
}