diff --git a/2020/AdventOfCode.csproj b/2020/AdventOfCode.csproj new file mode 100644 index 0000000..1d2d39a --- /dev/null +++ b/2020/AdventOfCode.csproj @@ -0,0 +1,8 @@ + + + + Exe + net5.0 + + + diff --git a/2020/Program.cs b/2020/Program.cs new file mode 100644 index 0000000..d5e011f --- /dev/null +++ b/2020/Program.cs @@ -0,0 +1,9 @@ +using System; + +namespace AdventOfCode { + class Program { + static void Main(string[] args) { + Console.WriteLine("Hello World!"); + } + } +}