You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
347 B

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();
}
}
}