adventofcode/2020/Program.cs

24 lines
408 B
C#

using System;
using static System.Console;
using System.Collections.Generic;
using Xunit;
namespace AdventOfCode {
public class Program {
static string Hello() {
return "ahoy, world";
}
[Fact]
static void HelloTest() {
Assert.Equal("ahoy, world", Hello());
}
static void Main(string[] args) {
Console.WriteLine(Hello());
}
}
}