adventofcode/2020/Program.cs

10 lines
161 B
C#
Raw Normal View History

2020-11-30 16:16:50 +00:00
using System;
namespace AdventOfCode {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello World!");
}
}
}