adventofcode/2020/Program.cs

24 lines
408 B
C#
Raw Normal View History

2020-11-30 16:16:50 +00:00
using System;
2020-11-30 16:26:04 +00:00
using static System.Console;
using System.Collections.Generic;
using Xunit;
2020-11-30 16:16:50 +00:00
namespace AdventOfCode {
2020-11-30 16:26:04 +00:00
public class Program {
static string Hello() {
return "ahoy, world";
}
[Fact]
static void HelloTest() {
Assert.Equal("ahoy, world", Hello());
}
2020-11-30 16:16:50 +00:00
static void Main(string[] args) {
2020-11-30 16:26:04 +00:00
Console.WriteLine(Hello());
2020-11-30 16:16:50 +00:00
}
}
}