You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
408 B

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());
}
}
}