2020-11-30 16:27:07 +00:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|